Skip to content

Exploring Materials Synthesis with MP Data and Reaction Networks

Author: Matthew McDermott
Last updated: 08/05/21

Goal

Learn how to build & interpret phase diagrams using MP data and apply these to predict reaction pathways in inorganic materials synthesis.

Outline

  1. Identifying a target system
  2. Building phase diagrams
  3. Predicting interface reactions between solids
  4. Enumerating all possible reactions to a specific target phase
  5. Constructing a reaction network from enumerated reactions
  6. Finding and balancing reaction pathways

1. Identifying a target system

Scenario:

While researching ferroelectric materials, you stumble upon a compound that has shown much promise as a multiferroic material: yttrium manganese oxide, YMnO\(_3\). When you consult the literature, it looks like there are many different approaches for making this material: solid-state synthesis, chimie douce methods, microwave-assisted synthesis, pulsed laser deposition, hydrothermal synthesis, etc.

In almost all of the papers you find, however, the authors describe significant difficulty in synthesizing phase-pure YMnO\(_3\). For example: - "... observation that crystallization at low temperature or high oxygen partial pressures gives a mixture of Y2Mn2O7 together with YMnO3" Brinks et al., Journal of Solid State Chemistry 129, 334-340 (1997). - "The solid state synthesis of YMnO3 requires very long procedure with repeated heating and grinding" Z. Brankovic et al. Ceramics International 41 (2015) - "There are still challenges to be addressed with respect to hydrothermal synthesis of h-YMnO3, most notably the difficulty in synthesising phase pure h-YMnO3. This is a result of the complexity of the system, with a total of eight crystalline phases having been detected throughout the course of the reaction." Marshall et al., Chem Eur. J 2020, 26, 9330-9337 (2020).

Being familiar with the Materials Project database and pymatgen, you decide to check the database to see if it can help answer the question: why is phase-pure YMnO\(_3\) so difficult to synthesize?

We previously learned how to use the MPRester to access computed data on the Materials Project. Let's start by importing MPRester:

from mp_api.matproj import MPRester

1.1 EXERCISE: Acquiring entries from MP

Using the MPRester, acquire all entries from the Materials Project with the composition YMnO\(_3\) in the cell below:

with MPRester() as mpr:
    entries = mpr.get_entries(chemsys_formula="YMnO3")
/usr/share/miniconda/envs/workshop/lib/python3.9/site-packages/maggma/api/utils.py:104: RuntimeWarning: fields may not start with an underscore, ignoring "_framework_formula"
  for model in get_flat_models_from_model(pydantic_model)
/usr/share/miniconda/envs/workshop/lib/python3.9/site-packages/maggma/api/utils.py:104: RuntimeWarning: fields may not start with an underscore, ignoring "_stable_entries"
  for model in get_flat_models_from_model(pydantic_model)
/usr/share/miniconda/envs/workshop/lib/python3.9/site-packages/maggma/api/utils.py:104: RuntimeWarning: fields may not start with an underscore, ignoring "_unstable_entries"
  for model in get_flat_models_from_model(pydantic_model)

1.2 Exploring downloaded entries

Now let's take a look at one of the downloaded entry objects.

In the ComputedStructureEntry printout, we can see the uncorrected energy, correction, final energy, and the various parameters/data associated with the calculation.

Since this is hard to interpret, it will be easier for us to reformat the entries into a pandas DataFrame with the relevant information. First we import pandas:

import pandas

And then we create a function to help us wrangle the entries into the DataFrame format:

def get_df_from_entries(entries):
    formulas = [e.composition.reduced_formula for e in entries]
    energies = [e.energy_per_atom for e in entries]
    spacegroups = [e.structure.get_space_group_info()[0] for e in entries]
    structures = [e.structure for e in entries]

    data = {"formula": formulas, "energy": energies, "spacegroup": spacegroups, "entry":entries}

    df = pandas.DataFrame(data).sort_values("energy")

    return df

The dataframe can now be easily created by calling this function:

df = get_df_from_entries(entries)
df
formula energy spacegroup entry
4 YMnO3 -9.130481 P6_3cm mp-19385 ComputedStructureEntry - Y6 Mn6 O18 ...
0 YMnO3 -9.109891 P6_3/mmc mp-19227 ComputedStructureEntry - Y2 Mn2 O6 ...
3 YMnO3 -9.107394 Pnma mp-20699 ComputedStructureEntry - Y4 Mn4 O12 ...
1 YMnO3 -8.805429 Pm-3m mp-1434307 ComputedStructureEntry - Y1 Mn1 O3 ...
2 YMnO3 -8.731478 Pnma mp-20699 ComputedStructureEntry - Y4 Mn4 O12 ...

We see that there are several polymorphs of similar energy. The lowest energy polymorph is the hexagonal YMnO\(_3\) phase which is well known as the thermodynamically stable phase in the literature:

structure = df.iloc[0]["entry"].structure
print(structure)
Full Formula (Y6 Mn6 O18)
Reduced Formula: YMnO3
abc   :   6.233022   6.233022  11.589090
angles:  90.000000  90.000000 119.999996
Sites (30)
  #  SP           a         b         c    magmom
---  ----  --------  --------  --------  --------
  0  Y     0.666667  0.333333  0.233045     0.019
  1  Y     0.333333  0.666667  0.733045     0.019
  2  Y     0.666667  0.333333  0.733045     0.019
  3  Y     0.333333  0.666667  0.233045     0.019
  4  Y     0         0         0.775978     0.016
  5  Y     0         0         0.275978     0.016
  6  Mn    0.666399  0         0.501375     3.939
  7  Mn    0.666399  0.666399  0.001375     3.931
  8  Mn    0         0.333601  0.001375     3.931
  9  Mn    0         0.666399  0.501375     3.939
 10  Mn    0.333601  0.333601  0.501375     3.939
 11  Mn    0.333601  0         0.001375     3.931
 12  O     0.666667  0.333333  0.021222    -0.035
 13  O     0.333333  0.666667  0.521222    -0.026
 14  O     0.666667  0.333333  0.521222    -0.026
 15  O     0.333333  0.666667  0.021222    -0.035
 16  O     0         0         0.97754     -0.03
 17  O     0         0         0.47754     -0.022
 18  O     0.358595  0         0.837277    -0.026
 19  O     0.358595  0.358595  0.337277    -0.026
 20  O     0         0.641405  0.337277    -0.026
 21  O     0         0.358595  0.837277    -0.026
 22  O     0.641405  0.641405  0.837277    -0.026
 23  O     0.641405  0         0.337277    -0.026
 24  O     0.307715  0         0.165664    -0.03
 25  O     0.307715  0.307715  0.665664    -0.03
 26  O     0         0.692285  0.665664    -0.03
 27  O     0         0.307715  0.165664    -0.03
 28  O     0.692285  0.692285  0.165664    -0.03
 29  O     0.692285  0         0.665664    -0.03

If we want to interactively view this structure in JupyterLab, we can also import crystal_toolkit to view it:

import crystal_toolkit
structure
If you see this text, the Crystal Toolkit Jupyter Lab 

extension is not installed. You can install it by running 

"pip install crystaltoolkit-extension" 

from the same environment you run "jupyter lab". 

This only works in Jupyter Lab 3.x or above.


Structure Summary
Lattice
    abc : 6.2330216584852325 6.2330216584852325 11.58909
 angles : 90.0 90.0 119.99999637504301
 volume : 389.9215651386502
      A : 3.116511 -5.397955 0.0
      B : 3.116511 5.397955 0.0
      C : 0.0 0.0 11.58909
PeriodicSite: Y (3.1165, -1.7993, 2.7008) [0.6667, 0.3333, 0.2330]
PeriodicSite: Y (3.1165, 1.7993, 8.4953) [0.3333, 0.6667, 0.7330]
PeriodicSite: Y (3.1165, -1.7993, 8.4953) [0.6667, 0.3333, 0.7330]
PeriodicSite: Y (3.1165, 1.7993, 2.7008) [0.3333, 0.6667, 0.2330]
PeriodicSite: Y (0.0000, 0.0000, 8.9929) [0.0000, 0.0000, 0.7760]
PeriodicSite: Y (0.0000, 0.0000, 3.1983) [0.0000, 0.0000, 0.2760]
PeriodicSite: Mn (2.0768, -3.5972, 5.8105) [0.6664, 0.0000, 0.5014]
PeriodicSite: Mn (4.1537, 0.0000, 0.0159) [0.6664, 0.6664, 0.0014]
PeriodicSite: Mn (1.0397, 1.8008, 0.0159) [0.0000, 0.3336, 0.0014]
PeriodicSite: Mn (2.0768, 3.5972, 5.8105) [0.0000, 0.6664, 0.5014]
PeriodicSite: Mn (2.0793, 0.0000, 5.8105) [0.3336, 0.3336, 0.5014]
PeriodicSite: Mn (1.0397, -1.8008, 0.0159) [0.3336, 0.0000, 0.0014]
PeriodicSite: O (3.1165, -1.7993, 0.2459) [0.6667, 0.3333, 0.0212]
PeriodicSite: O (3.1165, 1.7993, 6.0405) [0.3333, 0.6667, 0.5212]
PeriodicSite: O (3.1165, -1.7993, 6.0405) [0.6667, 0.3333, 0.5212]
PeriodicSite: O (3.1165, 1.7993, 0.2459) [0.3333, 0.6667, 0.0212]
PeriodicSite: O (0.0000, 0.0000, 11.3288) [0.0000, 0.0000, 0.9775]
PeriodicSite: O (0.0000, 0.0000, 5.5343) [0.0000, 0.0000, 0.4775]
PeriodicSite: O (1.1176, -1.9357, 9.7033) [0.3586, 0.0000, 0.8373]
PeriodicSite: O (2.2351, 0.0000, 3.9087) [0.3586, 0.3586, 0.3373]
PeriodicSite: O (1.9989, 3.4623, 3.9087) [0.0000, 0.6414, 0.3373]
PeriodicSite: O (1.1176, 1.9357, 9.7033) [0.0000, 0.3586, 0.8373]
PeriodicSite: O (3.9979, 0.0000, 9.7033) [0.6414, 0.6414, 0.8373]
PeriodicSite: O (1.9989, -3.4623, 3.9087) [0.6414, 0.0000, 0.3373]
PeriodicSite: O (0.9590, -1.6610, 1.9199) [0.3077, 0.0000, 0.1657]
PeriodicSite: O (1.9180, 0.0000, 7.7144) [0.3077, 0.3077, 0.6657]
PeriodicSite: O (2.1575, 3.7369, 7.7144) [0.0000, 0.6923, 0.6657]
PeriodicSite: O (0.9590, 1.6610, 1.9199) [0.0000, 0.3077, 0.1657]
PeriodicSite: O (4.3150, 0.0000, 1.9199) [0.6923, 0.6923, 0.1657]
PeriodicSite: O (2.1575, -3.7369, 7.7144) [0.6923, 0.0000, 0.6657]

2. Building phase diagrams

Now that we've confirmed the existence of the target phase within the MP database, we'd like to better understand phase competition within the Y-Mn-O system. This means answering questions suchs as:

  1. Just how stable is YMnO\(_3\)?
  2. How much energy is released upon formation of YMnO\(_3\) from the corresponding binary oxides?
  3. What other phases might compete against the formation of YMnO\(_3\)?
  4. What kinds of oxygen chemical potentials stabilize YMnO\(_3\)?

These are all questions that can be answered by constructing phase diagrams within pymatgen.

2.1 EXERCISE: Acquiring all entries within the chemical system

Let's start by downloading entries for the full Y-Mn-O system using MPRester. How many entries exist within the full Y-Mn-O system?

with MPRester() as mpr:
    entries = mpr.get_entries_in_chemsys("Y-Mn-O")
print(len(entries))
160

2.2 Compositional phase diagrams

Now that we have all the entries within the Y-Mn-O system, we can create a ternary compositional phase diagram by simply passing the list of entries to create a PhaseDiagram object. Let's first import this class from the phase_diagram module:

from pymatgen.analysis.phase_diagram import PhaseDiagram

And we can create the phase diagram:

pd = PhaseDiagram(entries)

To plot the phase diagram, we can either: 1. Create a PDPlotter object and call get_plot() with custom arguments 2. Create a PDPlotter object and call show() 3. In JupyterLab, just type the name of the phase diagram object in a cell and click "enter"!

Let's do option 1 so that we can see the possible arguments of the plotting function. First we import PDPlotter:

from pymatgen.analysis.phase_diagram import PDPlotter

And then we create the plotting object and call the get_plot() function:

plotter = PDPlotter(pd)
plotter.get_plot()
",e.fontSize*=1.25):("e"===p||"E"===p)&&h>2?e.text="1"+p+(f>0?"+":I)+h:(e.text=lt(Math.pow(10,l),t,"","fakehover"),"D1"===o&&"y"===t._id.charAt(0)&&(e.dy-=e.fontSize/6))}else{if("D"!==u)throw"unrecognized dtick "+String(o);e.text=String(Math.round(Math.pow(10,s.mod(l,1)))),e.fontSize*=.75}if("D1"===t.dtick){var d=String(e.text).charAt(0);"0"!==d&&"1"!==d||("y"===t._id.charAt(0)?e.dx-=e.fontSize/4:(e.dy+=e.fontSize/2,e.dx+=(t.range[1]>t.range[0]?1:-1)*e.fontSize*(l<0?.5:.25)))}}(t,o,0,c,g):"category"===u?function(t,e){var r=t._categories[Math.round(e.x)];void 0===r&&(r="");e.text=String(r)}(t,o):"multicategory"===u?function(t,e,r){var n=Math.round(e.x),i=t._categories[n]||[],a=void 0===i[1]?"":String(i[1]),o=void 0===i[0]?"":String(i[0]);r?e.text=o+" - "+a:(e.text=a,e.text2=o)}(t,o,r):_t(t)?function(t,e,r,n,i){if("radians"!==t.thetaunit||r)e.text=lt(e.x,t,i,n);else{var a=e.x/180;if(0===a)e.text="0";else{var o=function(t){function e(t,e){return Math.abs(t-e)<=1e-6}var r=function(t){for(var r=1;!e(Math.round(t*r)/r,t);)r*=10;return r}(t),n=t*r,i=Math.abs(function t(r,n){return e(n,0)?r:t(n,r%n)}(n,r));return[Math.round(n/i),Math.round(r/i)]}(a);if(o[1]>=100)e.text=lt(s.deg2rad(e.x),t,i,n);else{var l=e.x<0;1===o[1]?1===o[0]?e.text="\u03c0":e.text=o[0]+"\u03c0":e.text=["",o[0]," "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "3cc80497dd8e4c97a7a8f9d2d56b6348": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3d16c06b53654f298903a0dc0b2b574a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "3d3cbe01898a4e88b9f29b0ea47da9ec": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cd1d880909c14de3a2141cad8d10f9ca", "placeholder": "\u200b", "style": "IPY_MODEL_ca212cb3e5544da2911fe777cfdfa110", "value": "C-Mn: 100%"}}, "43ab4490d4b843a5b9efe911997afc4a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "43c2b3bf887b4cbfa232210bee8719b3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4677e88ea2a64a7083f8254f219a4abf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ebed498e4db241ebab93859ff0c7cba0", "placeholder": "\u200b", "style": "IPY_MODEL_e6159ca198b44421b5959a9fed590faf", "value": "C-Mn: 100%"}}, "47f30ce6e02f454d8381fb4bd7386b53": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "48f4c4fe3da945c89fb043164aeed422": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "4b750ebc42d64c829fbd41589629d31b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e375b56c8b124d39a95109375e3f5b04", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_1c11a413c6214471a8321192ceca683b", "value": 7.0}}, "4f92a391b11e4c58ae45be1850d7a9ee": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_1cc6e599993d4eeda7320472b1dd9e00", "IPY_MODEL_ddcaf821695e4a05a0e11010f9b8d454", "IPY_MODEL_a5a0e86f822d486c9a4abead05408a0d"], "layout": "IPY_MODEL_8f9d2ea7600741e180cec7592306ed2c"}}, "507e7764f6564e9cb98895043a1f38cc": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "50e91b4c508d4d758c30f8077a951e9a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5134ea30614147eaa5039b014c5a34b9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3cc80497dd8e4c97a7a8f9d2d56b6348", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_047a162b1fef41fc96ac1c5fd2f5e1db", "value": 63.0}}, "5479e2f255484d56b4df2c05077be77f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "59d7237417b44b6abfc8fef6e01f9591": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_aaeb6866ae88486d997bd1aac62dd810", "max": 3.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_d7744380e7494d79be93468bb59f2ffb", "value": 3.0}}, "59dc5b8e565d446585501330535b1cd9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_c317520f95094c35a313ed26ccc25664", "IPY_MODEL_759b2f430c5947bfab490af6d5bb331a", "IPY_MODEL_e447100efc304871a76d567b4525baaa"], "layout": "IPY_MODEL_919c0a269eeb4f96bf2b41f7cf36cb15"}}, "62558cfc56e0461cbe797922f734af6b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_d7acb225e3bc45a1ab677b15742a5a42", "IPY_MODEL_6b8fee1e00ed4dfe95649800d5c53aae", "IPY_MODEL_0d46f394d93445a895d1bdc5134ce4b4"], "layout": "IPY_MODEL_d7dc8ccd66e24ec594fdf510b72a5845"}}, "6328c4eb3a164d54a41fe594a8e858f1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "675fd29b49f04b57ad5ae7a441d4f816": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "69ff0638a0044cfc9f398ab3e74198e4": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_791e4fb1325d4e34ad29b7518ef5c6fd", "placeholder": "\u200b", "style": "IPY_MODEL_3d16c06b53654f298903a0dc0b2b574a", "value": " 63/63 [00:09<00:00, 8.60it/s]"}}, "6aec417c7a6441ed8c3e52b6e72fa24f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6b8fee1e00ed4dfe95649800d5c53aae": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_aad8869f13d14af48c85b56d774eafe4", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_3bcafb86adda4a479b633fbf31d49024", "value": 63.0}}, "6f1865d7a62049de87a5805257ce6ccf": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "70bf871b94d54d08ac92ad4682880dbb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_4677e88ea2a64a7083f8254f219a4abf", "IPY_MODEL_046b745997c8406da2e4f5e346b06a24", "IPY_MODEL_e1a2987cc92045159fbce172fb23eddd"], "layout": "IPY_MODEL_df3e2fdf38f345cead6243ab6dcc52d7"}}, "70c43e06e6b34689b7fce3e32f0de421": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "71be54ec7bf74af28cc60094d150fdc3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7317b4c66c134d22b08ef51f6838fe52": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7411d122274444538165428c6cd4b402": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "759b2f430c5947bfab490af6d5bb331a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_30c24a9956ac440f8d50dd6eb4ff08a6", "max": 4.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_dd49f011c827409fbe3630b1f685377b", "value": 4.0}}, "791e4fb1325d4e34ad29b7518ef5c6fd": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7f29408ebe784e66880d7bd78e35a2ca": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8127d15a18e54589a23f293b34f501e5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ec6aeaa3be974b4cb768ae20ed2e0314", "IPY_MODEL_90568c37b2d84c32b030ad2467a3e490", "IPY_MODEL_b5814b9a6c394081be26085c2be73e47"], "layout": "IPY_MODEL_94fe12d509dd4aa7bec2803383a6201a"}}, "82acf963dcd144bd986e6fb6f3640fb0": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "8611a00a43ce4a2799df856502a2d299": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "86ddd15b2f814facacad56c18388cde9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "87043e235a854d9ba5f1009aadab3a5d": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "883126cd9ef44d86a3ad118f469b7f5b": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8b74e07adf144d00b8a5cbdbd7df0c51": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8d844f43284c40b19427bb2f21ee7c0b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "8e9b142e882344d0b4f9cc28c9dce318": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8ed7980aa09047a38cf9b750b7bf3c6d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "8f9d2ea7600741e180cec7592306ed2c": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "90568c37b2d84c32b030ad2467a3e490": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9f432c71d3ef437797fa322e24f0bca9", "max": 2.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_9bcca8842d254cc0af1fb1f0d60210f5", "value": 2.0}}, "919c0a269eeb4f96bf2b41f7cf36cb15": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "923889c989784feda67b6be7aabc626c": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "94fe12d509dd4aa7bec2803383a6201a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "95acdf7e16ef4ea38487818ed79f6de1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8b74e07adf144d00b8a5cbdbd7df0c51", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_82acf963dcd144bd986e6fb6f3640fb0", "value": 7.0}}, "9a661fce83e54c5d9361f28a97966e16": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_d69e7b1f01eb4683ad4303d9e39e2ea7", "IPY_MODEL_4b750ebc42d64c829fbd41589629d31b", "IPY_MODEL_d6400ad5055b4433b104911506c296c6"], "layout": "IPY_MODEL_dd7cbcbdaecb4720b3fae595796d7be8"}}, "9bc5c64e275a42d0a56a9a4dab2a1522": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9bcca8842d254cc0af1fb1f0d60210f5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "9e396ba4ff3345e7bdbb8b677dc1c054": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9e7334a31610420682ff79f9d922514c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_7f29408ebe784e66880d7bd78e35a2ca", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_c110b07ae1cb48b4b679f3bac8042557", "value": 7.0}}, "9e886ecdb27a4897bf6b226a87b85c59": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_47f30ce6e02f454d8381fb4bd7386b53", "placeholder": "\u200b", "style": "IPY_MODEL_e1331b7357c846c086a640c61f55b2ec", "value": " 7/7 [00:00<00:00, 7.54it/s]"}}, "9f18b22cacdb43878350f647aef13330": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9f432c71d3ef437797fa322e24f0bca9": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a5a0e86f822d486c9a4abead05408a0d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_675fd29b49f04b57ad5ae7a441d4f816", "placeholder": "\u200b", "style": "IPY_MODEL_004f504afdbd4b149338ee0aa11acf3e", "value": " 7/7 [00:01<00:00, 3.29it/s]"}}, "a8433b95a245473fb712302852c8be3b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "a85d85f7608d48c8a8c132596318151b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e2c62bed2b9c4d619e0ce535c2236f1b", "IPY_MODEL_59d7237417b44b6abfc8fef6e01f9591", "IPY_MODEL_122b2bf662234c9e88fd18c9934cb3f3"], "layout": "IPY_MODEL_e783d09858bb4ee9be30fc71ce26fcd6"}}, "a9b29f5e38c1438e809db9642d1cf38f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aad8869f13d14af48c85b56d774eafe4": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aaeb6866ae88486d997bd1aac62dd810": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "add7965144364767be1f582856813015": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "b0d4bdad26a94b2f842bc00f5d1b19aa": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_b1f34cd2cb40439ca29b5fe500d1d864", "IPY_MODEL_9e7334a31610420682ff79f9d922514c", "IPY_MODEL_3351ef0522c14f39a6cf8db5ece798fa"], "layout": "IPY_MODEL_7317b4c66c134d22b08ef51f6838fe52"}}, "b1f34cd2cb40439ca29b5fe500d1d864": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9bc5c64e275a42d0a56a9a4dab2a1522", "placeholder": "\u200b", "style": "IPY_MODEL_19ef6077880b4f03854d74b1b3ba5cf8", "value": "Y: 100%"}}, "b5814b9a6c394081be26085c2be73e47": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cb985572e80a402390b071c127e52c21", "placeholder": "\u200b", "style": "IPY_MODEL_c2e99a546baa4a98835522046ee1de8d", "value": " 2/2 [00:16<00:00, 7.36s/it]"}}, "baaee86655504f74bb420cdea0c3fec9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "bd997624b6014daa97de0a0d3d5cd6d4": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "be89590d7dae4b3d9a4392ab33d813be": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_13fb522182c7476dbd6aab4591ce516d", "placeholder": "\u200b", "style": "IPY_MODEL_05d872e05e794e61ae8166ee7907de40", "value": " 63/63 [02:12<00:00, 1.84it/s]"}}, "c110b07ae1cb48b4b679f3bac8042557": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "c23390cb6e0d4e49b34bd70a21087e1f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c2e99a546baa4a98835522046ee1de8d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c317520f95094c35a313ed26ccc25664": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_883126cd9ef44d86a3ad118f469b7f5b", "placeholder": "\u200b", "style": "IPY_MODEL_7411d122274444538165428c6cd4b402", "value": "100%"}}, "c5d21594175148e79b3a0dc994b487d1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c97cdd75b1e1418696907d02364c210a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ca212cb3e5544da2911fe777cfdfa110": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "cac0d5a113ac4b57a1926e6f309d084d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_14497d175b7a418c9cd14143a9026302", "IPY_MODEL_5134ea30614147eaa5039b014c5a34b9", "IPY_MODEL_be89590d7dae4b3d9a4392ab33d813be"], "layout": "IPY_MODEL_71be54ec7bf74af28cc60094d150fdc3"}}, "cb985572e80a402390b071c127e52c21": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cd1d880909c14de3a2141cad8d10f9ca": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d059874d56b5493e9dfc25abb5774f52": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d213da6ccea74eed8ef0bbb3fb74feb7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e719fd994cfd4f4cb89c6c2351e49aa8", "placeholder": "\u200b", "style": "IPY_MODEL_07e7e6b8c1d043a3b98f0e261e828adb", "value": " 7/7 [00:02<00:00, 1.87it/s]"}}, "d2b63b1c5a254f188639ce7eeb412837": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "d6400ad5055b4433b104911506c296c6": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_923889c989784feda67b6be7aabc626c", "placeholder": "\u200b", "style": "IPY_MODEL_8ed7980aa09047a38cf9b750b7bf3c6d", "value": " 7/7 [00:00<00:00, 7.51it/s]"}}, "d69e7b1f01eb4683ad4303d9e39e2ea7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e9179f1e952c4c499459bbc4e34376d3", "placeholder": "\u200b", "style": "IPY_MODEL_3844b58d18f24dde95e42efbe453ec46", "value": "Y: 100%"}}, "d7744380e7494d79be93468bb59f2ffb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "d7acb225e3bc45a1ab677b15742a5a42": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d059874d56b5493e9dfc25abb5774f52", "placeholder": "\u200b", "style": "IPY_MODEL_f369e83936694c498b740cffafabcadb", "value": "C-Mn: 100%"}}, "d7dc8ccd66e24ec594fdf510b72a5845": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "dc7f3a441f444cd48f0e6eb3654f3b0d": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "dd49f011c827409fbe3630b1f685377b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "dd7cbcbdaecb4720b3fae595796d7be8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ddcaf821695e4a05a0e11010f9b8d454": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_a9b29f5e38c1438e809db9642d1cf38f", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_86ddd15b2f814facacad56c18388cde9", "value": 7.0}}, "dddd07190ac14dff9887004b3449004f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "df3e2fdf38f345cead6243ab6dcc52d7": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e0f050169e7e4f22a7dacab479634c69": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8e9b142e882344d0b4f9cc28c9dce318", "placeholder": "\u200b", "style": "IPY_MODEL_2a5e5a0dca324dbdbb822fea591a0cb3", "value": "Mn-Y: 100%"}}, "e1331b7357c846c086a640c61f55b2ec": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e1a2987cc92045159fbce172fb23eddd": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8611a00a43ce4a2799df856502a2d299", "placeholder": "\u200b", "style": "IPY_MODEL_baaee86655504f74bb420cdea0c3fec9", "value": " 63/63 [00:09<00:00, 9.58it/s]"}}, "e2c62bed2b9c4d619e0ce535c2236f1b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_03c57f1ea85e48a5bc6ae0f791bc12d5", "placeholder": "\u200b", "style": "IPY_MODEL_2fb0a42ccc7b479a8828059b0cfed84f", "value": "100%"}}, "e2d7d796e0f549e987177ee6892ab1d3": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_dc7f3a441f444cd48f0e6eb3654f3b0d", "placeholder": "\u200b", "style": "IPY_MODEL_c5d21594175148e79b3a0dc994b487d1", "value": " 7/7 [00:00<00:00, 4.48it/s]"}}, "e375b56c8b124d39a95109375e3f5b04": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e447100efc304871a76d567b4525baaa": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6f1865d7a62049de87a5805257ce6ccf", "placeholder": "\u200b", "style": "IPY_MODEL_dddd07190ac14dff9887004b3449004f", "value": " 4/4 [00:00<00:00, 3.09it/s]"}}, "e5f2a2e8c7ab435fa10755863577a824": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e6159ca198b44421b5959a9fed590faf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e719fd994cfd4f4cb89c6c2351e49aa8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e783d09858bb4ee9be30fc71ce26fcd6": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e9179f1e952c4c499459bbc4e34376d3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ea58b84bd2c543f3839290cb50f6d31d": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ebe6da3072404404aeb41316e2f693d5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "ebed498e4db241ebab93859ff0c7cba0": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ec6aeaa3be974b4cb768ae20ed2e0314": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c23390cb6e0d4e49b34bd70a21087e1f", "placeholder": "\u200b", "style": "IPY_MODEL_1b1d87eff3cd4fd0828a0ec6a6dbb2a7", "value": "500000/1000000: 100%"}}, "f182cf6650a14926b46bba5bd4b5d432": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "f23cb8c1bece41ec97d79fecf2c3f499": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5479e2f255484d56b4df2c05077be77f", "placeholder": "\u200b", "style": "IPY_MODEL_8d844f43284c40b19427bb2f21ee7c0b", "value": "Y: 100%"}}, "f255a57b299e498dab9328cfe76fe19c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_3d3cbe01898a4e88b9f29b0ea47da9ec", "IPY_MODEL_1be41861866240f0aa124edb2abb8246", "IPY_MODEL_69ff0638a0044cfc9f398ab3e74198e4"], "layout": "IPY_MODEL_507e7764f6564e9cb98895043a1f38cc"}}, "f369e83936694c498b740cffafabcadb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "f696baabf8d0492181eeb2580e97fe12": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_43c2b3bf887b4cbfa232210bee8719b3", "placeholder": "\u200b", "style": "IPY_MODEL_3143c7ae6fa3444a80d3a01f7463ca4d", "value": "Y: 100%"}}, "fb1c843a88e1489daaba9f5206cc19e5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}}, "version_major": 2, "version_minor": 0} ","\u2044","",o[1],"essStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "3cc80497dd8e4c97a7a8f9d2d56b6348": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3d16c06b53654f298903a0dc0b2b574a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "3d3cbe01898a4e88b9f29b0ea47da9ec": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cd1d880909c14de3a2141cad8d10f9ca", "placeholder": "\u200b", "style": "IPY_MODEL_ca212cb3e5544da2911fe777cfdfa110", "value": "C-Mn: 100%"}}, "43ab4490d4b843a5b9efe911997afc4a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "43c2b3bf887b4cbfa232210bee8719b3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4677e88ea2a64a7083f8254f219a4abf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ebed498e4db241ebab93859ff0c7cba0", "placeholder": "\u200b", "style": "IPY_MODEL_e6159ca198b44421b5959a9fed590faf", "value": "C-Mn: 100%"}}, "47f30ce6e02f454d8381fb4bd7386b53": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "48f4c4fe3da945c89fb043164aeed422": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "4b750ebc42d64c829fbd41589629d31b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e375b56c8b124d39a95109375e3f5b04", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_1c11a413c6214471a8321192ceca683b", "value": 7.0}}, "4f92a391b11e4c58ae45be1850d7a9ee": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_1cc6e599993d4eeda7320472b1dd9e00", "IPY_MODEL_ddcaf821695e4a05a0e11010f9b8d454", "IPY_MODEL_a5a0e86f822d486c9a4abead05408a0d"], "layout": "IPY_MODEL_8f9d2ea7600741e180cec7592306ed2c"}}, "507e7764f6564e9cb98895043a1f38cc": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "50e91b4c508d4d758c30f8077a951e9a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5134ea30614147eaa5039b014c5a34b9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3cc80497dd8e4c97a7a8f9d2d56b6348", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_047a162b1fef41fc96ac1c5fd2f5e1db", "value": 63.0}}, "5479e2f255484d56b4df2c05077be77f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "59d7237417b44b6abfc8fef6e01f9591": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_aaeb6866ae88486d997bd1aac62dd810", "max": 3.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_d7744380e7494d79be93468bb59f2ffb", "value": 3.0}}, "59dc5b8e565d446585501330535b1cd9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_c317520f95094c35a313ed26ccc25664", "IPY_MODEL_759b2f430c5947bfab490af6d5bb331a", "IPY_MODEL_e447100efc304871a76d567b4525baaa"], "layout": "IPY_MODEL_919c0a269eeb4f96bf2b41f7cf36cb15"}}, "62558cfc56e0461cbe797922f734af6b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_d7acb225e3bc45a1ab677b15742a5a42", "IPY_MODEL_6b8fee1e00ed4dfe95649800d5c53aae", "IPY_MODEL_0d46f394d93445a895d1bdc5134ce4b4"], "layout": "IPY_MODEL_d7dc8ccd66e24ec594fdf510b72a5845"}}, "6328c4eb3a164d54a41fe594a8e858f1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "675fd29b49f04b57ad5ae7a441d4f816": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "69ff0638a0044cfc9f398ab3e74198e4": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_791e4fb1325d4e34ad29b7518ef5c6fd", "placeholder": "\u200b", "style": "IPY_MODEL_3d16c06b53654f298903a0dc0b2b574a", "value": " 63/63 [00:09<00:00, 8.60it/s]"}}, "6aec417c7a6441ed8c3e52b6e72fa24f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6b8fee1e00ed4dfe95649800d5c53aae": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_aad8869f13d14af48c85b56d774eafe4", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_3bcafb86adda4a479b633fbf31d49024", "value": 63.0}}, "6f1865d7a62049de87a5805257ce6ccf": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "70bf871b94d54d08ac92ad4682880dbb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_4677e88ea2a64a7083f8254f219a4abf", "IPY_MODEL_046b745997c8406da2e4f5e346b06a24", "IPY_MODEL_e1a2987cc92045159fbce172fb23eddd"], "layout": "IPY_MODEL_df3e2fdf38f345cead6243ab6dcc52d7"}}, "70c43e06e6b34689b7fce3e32f0de421": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "71be54ec7bf74af28cc60094d150fdc3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7317b4c66c134d22b08ef51f6838fe52": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7411d122274444538165428c6cd4b402": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "759b2f430c5947bfab490af6d5bb331a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_30c24a9956ac440f8d50dd6eb4ff08a6", "max": 4.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_dd49f011c827409fbe3630b1f685377b", "value": 4.0}}, "791e4fb1325d4e34ad29b7518ef5c6fd": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7f29408ebe784e66880d7bd78e35a2ca": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8127d15a18e54589a23f293b34f501e5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ec6aeaa3be974b4cb768ae20ed2e0314", "IPY_MODEL_90568c37b2d84c32b030ad2467a3e490", "IPY_MODEL_b5814b9a6c394081be26085c2be73e47"], "layout": "IPY_MODEL_94fe12d509dd4aa7bec2803383a6201a"}}, "82acf963dcd144bd986e6fb6f3640fb0": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "8611a00a43ce4a2799df856502a2d299": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "86ddd15b2f814facacad56c18388cde9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "87043e235a854d9ba5f1009aadab3a5d": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "883126cd9ef44d86a3ad118f469b7f5b": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8b74e07adf144d00b8a5cbdbd7df0c51": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8d844f43284c40b19427bb2f21ee7c0b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "8e9b142e882344d0b4f9cc28c9dce318": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8ed7980aa09047a38cf9b750b7bf3c6d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "8f9d2ea7600741e180cec7592306ed2c": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "90568c37b2d84c32b030ad2467a3e490": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9f432c71d3ef437797fa322e24f0bca9", "max": 2.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_9bcca8842d254cc0af1fb1f0d60210f5", "value": 2.0}}, "919c0a269eeb4f96bf2b41f7cf36cb15": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "923889c989784feda67b6be7aabc626c": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "94fe12d509dd4aa7bec2803383a6201a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "95acdf7e16ef4ea38487818ed79f6de1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8b74e07adf144d00b8a5cbdbd7df0c51", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_82acf963dcd144bd986e6fb6f3640fb0", "value": 7.0}}, "9a661fce83e54c5d9361f28a97966e16": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_d69e7b1f01eb4683ad4303d9e39e2ea7", "IPY_MODEL_4b750ebc42d64c829fbd41589629d31b", "IPY_MODEL_d6400ad5055b4433b104911506c296c6"], "layout": "IPY_MODEL_dd7cbcbdaecb4720b3fae595796d7be8"}}, "9bc5c64e275a42d0a56a9a4dab2a1522": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9bcca8842d254cc0af1fb1f0d60210f5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "9e396ba4ff3345e7bdbb8b677dc1c054": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9e7334a31610420682ff79f9d922514c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_7f29408ebe784e66880d7bd78e35a2ca", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_c110b07ae1cb48b4b679f3bac8042557", "value": 7.0}}, "9e886ecdb27a4897bf6b226a87b85c59": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_47f30ce6e02f454d8381fb4bd7386b53", "placeholder": "\u200b", "style": "IPY_MODEL_e1331b7357c846c086a640c61f55b2ec", "value": " 7/7 [00:00<00:00, 7.54it/s]"}}, "9f18b22cacdb43878350f647aef13330": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9f432c71d3ef437797fa322e24f0bca9": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a5a0e86f822d486c9a4abead05408a0d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_675fd29b49f04b57ad5ae7a441d4f816", "placeholder": "\u200b", "style": "IPY_MODEL_004f504afdbd4b149338ee0aa11acf3e", "value": " 7/7 [00:01<00:00, 3.29it/s]"}}, "a8433b95a245473fb712302852c8be3b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "a85d85f7608d48c8a8c132596318151b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e2c62bed2b9c4d619e0ce535c2236f1b", "IPY_MODEL_59d7237417b44b6abfc8fef6e01f9591", "IPY_MODEL_122b2bf662234c9e88fd18c9934cb3f3"], "layout": "IPY_MODEL_e783d09858bb4ee9be30fc71ce26fcd6"}}, "a9b29f5e38c1438e809db9642d1cf38f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aad8869f13d14af48c85b56d774eafe4": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aaeb6866ae88486d997bd1aac62dd810": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "add7965144364767be1f582856813015": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "b0d4bdad26a94b2f842bc00f5d1b19aa": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_b1f34cd2cb40439ca29b5fe500d1d864", "IPY_MODEL_9e7334a31610420682ff79f9d922514c", "IPY_MODEL_3351ef0522c14f39a6cf8db5ece798fa"], "layout": "IPY_MODEL_7317b4c66c134d22b08ef51f6838fe52"}}, "b1f34cd2cb40439ca29b5fe500d1d864": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9bc5c64e275a42d0a56a9a4dab2a1522", "placeholder": "\u200b", "style": "IPY_MODEL_19ef6077880b4f03854d74b1b3ba5cf8", "value": "Y: 100%"}}, "b5814b9a6c394081be26085c2be73e47": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cb985572e80a402390b071c127e52c21", "placeholder": "\u200b", "style": "IPY_MODEL_c2e99a546baa4a98835522046ee1de8d", "value": " 2/2 [00:16<00:00, 7.36s/it]"}}, "baaee86655504f74bb420cdea0c3fec9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "bd997624b6014daa97de0a0d3d5cd6d4": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "be89590d7dae4b3d9a4392ab33d813be": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_13fb522182c7476dbd6aab4591ce516d", "placeholder": "\u200b", "style": "IPY_MODEL_05d872e05e794e61ae8166ee7907de40", "value": " 63/63 [02:12<00:00, 1.84it/s]"}}, "c110b07ae1cb48b4b679f3bac8042557": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "c23390cb6e0d4e49b34bd70a21087e1f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c2e99a546baa4a98835522046ee1de8d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c317520f95094c35a313ed26ccc25664": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_883126cd9ef44d86a3ad118f469b7f5b", "placeholder": "\u200b", "style": "IPY_MODEL_7411d122274444538165428c6cd4b402", "value": "100%"}}, "c5d21594175148e79b3a0dc994b487d1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c97cdd75b1e1418696907d02364c210a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ca212cb3e5544da2911fe777cfdfa110": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "cac0d5a113ac4b57a1926e6f309d084d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_14497d175b7a418c9cd14143a9026302", "IPY_MODEL_5134ea30614147eaa5039b014c5a34b9", "IPY_MODEL_be89590d7dae4b3d9a4392ab33d813be"], "layout": "IPY_MODEL_71be54ec7bf74af28cc60094d150fdc3"}}, "cb985572e80a402390b071c127e52c21": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cd1d880909c14de3a2141cad8d10f9ca": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d059874d56b5493e9dfc25abb5774f52": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d213da6ccea74eed8ef0bbb3fb74feb7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e719fd994cfd4f4cb89c6c2351e49aa8", "placeholder": "\u200b", "style": "IPY_MODEL_07e7e6b8c1d043a3b98f0e261e828adb", "value": " 7/7 [00:02<00:00, 1.87it/s]"}}, "d2b63b1c5a254f188639ce7eeb412837": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "d6400ad5055b4433b104911506c296c6": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_923889c989784feda67b6be7aabc626c", "placeholder": "\u200b", "style": "IPY_MODEL_8ed7980aa09047a38cf9b750b7bf3c6d", "value": " 7/7 [00:00<00:00, 7.51it/s]"}}, "d69e7b1f01eb4683ad4303d9e39e2ea7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e9179f1e952c4c499459bbc4e34376d3", "placeholder": "\u200b", "style": "IPY_MODEL_3844b58d18f24dde95e42efbe453ec46", "value": "Y: 100%"}}, "d7744380e7494d79be93468bb59f2ffb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "d7acb225e3bc45a1ab677b15742a5a42": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d059874d56b5493e9dfc25abb5774f52", "placeholder": "\u200b", "style": "IPY_MODEL_f369e83936694c498b740cffafabcadb", "value": "C-Mn: 100%"}}, "d7dc8ccd66e24ec594fdf510b72a5845": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "dc7f3a441f444cd48f0e6eb3654f3b0d": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "dd49f011c827409fbe3630b1f685377b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "dd7cbcbdaecb4720b3fae595796d7be8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ddcaf821695e4a05a0e11010f9b8d454": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_a9b29f5e38c1438e809db9642d1cf38f", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_86ddd15b2f814facacad56c18388cde9", "value": 7.0}}, "dddd07190ac14dff9887004b3449004f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "df3e2fdf38f345cead6243ab6dcc52d7": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e0f050169e7e4f22a7dacab479634c69": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8e9b142e882344d0b4f9cc28c9dce318", "placeholder": "\u200b", "style": "IPY_MODEL_2a5e5a0dca324dbdbb822fea591a0cb3", "value": "Mn-Y: 100%"}}, "e1331b7357c846c086a640c61f55b2ec": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e1a2987cc92045159fbce172fb23eddd": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8611a00a43ce4a2799df856502a2d299", "placeholder": "\u200b", "style": "IPY_MODEL_baaee86655504f74bb420cdea0c3fec9", "value": " 63/63 [00:09<00:00, 9.58it/s]"}}, "e2c62bed2b9c4d619e0ce535c2236f1b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_03c57f1ea85e48a5bc6ae0f791bc12d5", "placeholder": "\u200b", "style": "IPY_MODEL_2fb0a42ccc7b479a8828059b0cfed84f", "value": "100%"}}, "e2d7d796e0f549e987177ee6892ab1d3": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_dc7f3a441f444cd48f0e6eb3654f3b0d", "placeholder": "\u200b", "style": "IPY_MODEL_c5d21594175148e79b3a0dc994b487d1", "value": " 7/7 [00:00<00:00, 4.48it/s]"}}, "e375b56c8b124d39a95109375e3f5b04": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e447100efc304871a76d567b4525baaa": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6f1865d7a62049de87a5805257ce6ccf", "placeholder": "\u200b", "style": "IPY_MODEL_dddd07190ac14dff9887004b3449004f", "value": " 4/4 [00:00<00:00, 3.09it/s]"}}, "e5f2a2e8c7ab435fa10755863577a824": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e6159ca198b44421b5959a9fed590faf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e719fd994cfd4f4cb89c6c2351e49aa8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e783d09858bb4ee9be30fc71ce26fcd6": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e9179f1e952c4c499459bbc4e34376d3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ea58b84bd2c543f3839290cb50f6d31d": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ebe6da3072404404aeb41316e2f693d5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "ebed498e4db241ebab93859ff0c7cba0": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ec6aeaa3be974b4cb768ae20ed2e0314": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c23390cb6e0d4e49b34bd70a21087e1f", "placeholder": "\u200b", "style": "IPY_MODEL_1b1d87eff3cd4fd0828a0ec6a6dbb2a7", "value": "500000/1000000: 100%"}}, "f182cf6650a14926b46bba5bd4b5d432": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "f23cb8c1bece41ec97d79fecf2c3f499": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5479e2f255484d56b4df2c05077be77f", "placeholder": "\u200b", "style": "IPY_MODEL_8d844f43284c40b19427bb2f21ee7c0b", "value": "Y: 100%"}}, "f255a57b299e498dab9328cfe76fe19c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_3d3cbe01898a4e88b9f29b0ea47da9ec", "IPY_MODEL_1be41861866240f0aa124edb2abb8246", "IPY_MODEL_69ff0638a0044cfc9f398ab3e74198e4"], "layout": "IPY_MODEL_507e7764f6564e9cb98895043a1f38cc"}}, "f369e83936694c498b740cffafabcadb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "f696baabf8d0492181eeb2580e97fe12": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_43c2b3bf887b4cbfa232210bee8719b3", "placeholder": "\u200b", "style": "IPY_MODEL_3143c7ae6fa3444a80d3a01f7463ca4d", "value": "Y: 100%"}}, "fb1c843a88e1489daaba9f5206cc19e5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}}, "version_major": 2, "version_minor": 0} ","\u03c0"].join(""),l&&(e.text=I+e.text)}}}}(t,o,r,c,g):function(t,e,r,n,i){"never"===i?i="":"all"===t.showexponent&&Math.abs(e.x/t.dtick)<1e-6&&(i="hide");e.text=lt(e.x,t,i,n)}(t,o,0,c,g),n||(t.tickprefix&&!d(t.showtickprefix)&&(o.text=t.tickprefix+o.text),t.ticksuffix&&!d(t.showticksuffix)&&(o.text+=t.ticksuffix)),"boundaries"===t.tickson||t.showdividers){var m=function(e){var r=t.l2p(e);return r>=0&&r<=t._length?e:null};o.xbnd=[m(o.x-.5),m(o.x+t.dtick-.5)]}return o},B.hoverLabelText=function(t,e,r){if(r!==P&&r!==e)return B.hoverLabelText(t,e)+" - "+B.hoverLabelText(t,r);var n="log"===t.type&&e<=0,i=B.tickText(t,t.c2l(n?-e:e),"hover").text;return n?0===e?"0":I+i:i};var at=["f","p","n","\u03bc","m","","k","M","G","T"];function ot(t){return"SI"===t||"B"===t}function st(t){return t>14||t<-15}function lt(t,e,r,n){var a=t<0,o=e._tickround,l=r||e.exponentformat||"B",c=e._tickexponent,u=B.getTickFormat(e),f=e.separatethousands;if(n){var h={exponentformat:l,minexponent:e.minexponent,dtick:"none"===e.showexponent?e.dtick:i(t)&&Math.abs(t)||1,range:"none"===e.showexponent?e.range.map(e.r2d):[0,t||1]};nt(h),o=(Number(h._tickround)||0)+4,c=h._tickexponent,e.hoverformat&&(u=e.hoverformat)}if(u)return e._numFormat(u)(t).replace(/-/g,I);var p,d=Math.pow(10,-o)/2;if("none"===l&&(c=0),(t=Math.abs(t))"+p+"": ""}}, "3d3cbe01898a4e88b9f29b0ea47da9ec": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cd1d880909c14de3a2141cad8d10f9ca", "placeholder": "\u200b", "style": "IPY_MODEL_ca212cb3e5544da2911fe777cfdfa110", "value": "C-Mn: 100%"}}, "43ab4490d4b843a5b9efe911997afc4a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "43c2b3bf887b4cbfa232210bee8719b3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4677e88ea2a64a7083f8254f219a4abf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ebed498e4db241ebab93859ff0c7cba0", "placeholder": "\u200b", "style": "IPY_MODEL_e6159ca198b44421b5959a9fed590faf", "value": "C-Mn: 100%"}}, "47f30ce6e02f454d8381fb4bd7386b53": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "48f4c4fe3da945c89fb043164aeed422": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "4b750ebc42d64c829fbd41589629d31b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e375b56c8b124d39a95109375e3f5b04", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_1c11a413c6214471a8321192ceca683b", "value": 7.0}}, "4f92a391b11e4c58ae45be1850d7a9ee": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_1cc6e599993d4eeda7320472b1dd9e00", "IPY_MODEL_ddcaf821695e4a05a0e11010f9b8d454", "IPY_MODEL_a5a0e86f822d486c9a4abead05408a0d"], "layout": "IPY_MODEL_8f9d2ea7600741e180cec7592306ed2c"}}, "507e7764f6564e9cb98895043a1f38cc": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "50e91b4c508d4d758c30f8077a951e9a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5134ea30614147eaa5039b014c5a34b9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3cc80497dd8e4c97a7a8f9d2d56b6348", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_047a162b1fef41fc96ac1c5fd2f5e1db", "value": 63.0}}, "5479e2f255484d56b4df2c05077be77f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "59d7237417b44b6abfc8fef6e01f9591": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_aaeb6866ae88486d997bd1aac62dd810", "max": 3.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_d7744380e7494d79be93468bb59f2ffb", "value": 3.0}}, "59dc5b8e565d446585501330535b1cd9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_c317520f95094c35a313ed26ccc25664", "IPY_MODEL_759b2f430c5947bfab490af6d5bb331a", "IPY_MODEL_e447100efc304871a76d567b4525baaa"], "layout": "IPY_MODEL_919c0a269eeb4f96bf2b41f7cf36cb15"}}, "62558cfc56e0461cbe797922f734af6b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_d7acb225e3bc45a1ab677b15742a5a42", "IPY_MODEL_6b8fee1e00ed4dfe95649800d5c53aae", "IPY_MODEL_0d46f394d93445a895d1bdc5134ce4b4"], "layout": "IPY_MODEL_d7dc8ccd66e24ec594fdf510b72a5845"}}, "6328c4eb3a164d54a41fe594a8e858f1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "675fd29b49f04b57ad5ae7a441d4f816": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "69ff0638a0044cfc9f398ab3e74198e4": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_791e4fb1325d4e34ad29b7518ef5c6fd", "placeholder": "\u200b", "style": "IPY_MODEL_3d16c06b53654f298903a0dc0b2b574a", "value": " 63/63 [00:09<00:00, 8.60it/s]"}}, "6aec417c7a6441ed8c3e52b6e72fa24f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6b8fee1e00ed4dfe95649800d5c53aae": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_aad8869f13d14af48c85b56d774eafe4", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_3bcafb86adda4a479b633fbf31d49024", "value": 63.0}}, "6f1865d7a62049de87a5805257ce6ccf": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "70bf871b94d54d08ac92ad4682880dbb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_4677e88ea2a64a7083f8254f219a4abf", "IPY_MODEL_046b745997c8406da2e4f5e346b06a24", "IPY_MODEL_e1a2987cc92045159fbce172fb23eddd"], "layout": "IPY_MODEL_df3e2fdf38f345cead6243ab6dcc52d7"}}, "70c43e06e6b34689b7fce3e32f0de421": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "71be54ec7bf74af28cc60094d150fdc3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7317b4c66c134d22b08ef51f6838fe52": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7411d122274444538165428c6cd4b402": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "759b2f430c5947bfab490af6d5bb331a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_30c24a9956ac440f8d50dd6eb4ff08a6", "max": 4.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_dd49f011c827409fbe3630b1f685377b", "value": 4.0}}, "791e4fb1325d4e34ad29b7518ef5c6fd": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "7f29408ebe784e66880d7bd78e35a2ca": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8127d15a18e54589a23f293b34f501e5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ec6aeaa3be974b4cb768ae20ed2e0314", "IPY_MODEL_90568c37b2d84c32b030ad2467a3e490", "IPY_MODEL_b5814b9a6c394081be26085c2be73e47"], "layout": "IPY_MODEL_94fe12d509dd4aa7bec2803383a6201a"}}, "82acf963dcd144bd986e6fb6f3640fb0": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "8611a00a43ce4a2799df856502a2d299": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "86ddd15b2f814facacad56c18388cde9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "87043e235a854d9ba5f1009aadab3a5d": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "883126cd9ef44d86a3ad118f469b7f5b": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8b74e07adf144d00b8a5cbdbd7df0c51": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8d844f43284c40b19427bb2f21ee7c0b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "8e9b142e882344d0b4f9cc28c9dce318": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8ed7980aa09047a38cf9b750b7bf3c6d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "8f9d2ea7600741e180cec7592306ed2c": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "90568c37b2d84c32b030ad2467a3e490": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9f432c71d3ef437797fa322e24f0bca9", "max": 2.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_9bcca8842d254cc0af1fb1f0d60210f5", "value": 2.0}}, "919c0a269eeb4f96bf2b41f7cf36cb15": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "923889c989784feda67b6be7aabc626c": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "94fe12d509dd4aa7bec2803383a6201a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "95acdf7e16ef4ea38487818ed79f6de1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8b74e07adf144d00b8a5cbdbd7df0c51", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_82acf963dcd144bd986e6fb6f3640fb0", "value": 7.0}}, "9a661fce83e54c5d9361f28a97966e16": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_d69e7b1f01eb4683ad4303d9e39e2ea7", "IPY_MODEL_4b750ebc42d64c829fbd41589629d31b", "IPY_MODEL_d6400ad5055b4433b104911506c296c6"], "layout": "IPY_MODEL_dd7cbcbdaecb4720b3fae595796d7be8"}}, "9bc5c64e275a42d0a56a9a4dab2a1522": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9bcca8842d254cc0af1fb1f0d60210f5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "9e396ba4ff3345e7bdbb8b677dc1c054": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9e7334a31610420682ff79f9d922514c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_7f29408ebe784e66880d7bd78e35a2ca", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_c110b07ae1cb48b4b679f3bac8042557", "value": 7.0}}, "9e886ecdb27a4897bf6b226a87b85c59": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_47f30ce6e02f454d8381fb4bd7386b53", "placeholder": "\u200b", "style": "IPY_MODEL_e1331b7357c846c086a640c61f55b2ec", "value": " 7/7 [00:00<00:00, 7.54it/s]"}}, "9f18b22cacdb43878350f647aef13330": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9f432c71d3ef437797fa322e24f0bca9": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a5a0e86f822d486c9a4abead05408a0d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_675fd29b49f04b57ad5ae7a441d4f816", "placeholder": "\u200b", "style": "IPY_MODEL_004f504afdbd4b149338ee0aa11acf3e", "value": " 7/7 [00:01<00:00, 3.29it/s]"}}, "a8433b95a245473fb712302852c8be3b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "a85d85f7608d48c8a8c132596318151b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e2c62bed2b9c4d619e0ce535c2236f1b", "IPY_MODEL_59d7237417b44b6abfc8fef6e01f9591", "IPY_MODEL_122b2bf662234c9e88fd18c9934cb3f3"], "layout": "IPY_MODEL_e783d09858bb4ee9be30fc71ce26fcd6"}}, "a9b29f5e38c1438e809db9642d1cf38f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aad8869f13d14af48c85b56d774eafe4": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aaeb6866ae88486d997bd1aac62dd810": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "add7965144364767be1f582856813015": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "b0d4bdad26a94b2f842bc00f5d1b19aa": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_b1f34cd2cb40439ca29b5fe500d1d864", "IPY_MODEL_9e7334a31610420682ff79f9d922514c", "IPY_MODEL_3351ef0522c14f39a6cf8db5ece798fa"], "layout": "IPY_MODEL_7317b4c66c134d22b08ef51f6838fe52"}}, "b1f34cd2cb40439ca29b5fe500d1d864": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9bc5c64e275a42d0a56a9a4dab2a1522", "placeholder": "\u200b", "style": "IPY_MODEL_19ef6077880b4f03854d74b1b3ba5cf8", "value": "Y: 100%"}}, "b5814b9a6c394081be26085c2be73e47": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cb985572e80a402390b071c127e52c21", "placeholder": "\u200b", "style": "IPY_MODEL_c2e99a546baa4a98835522046ee1de8d", "value": " 2/2 [00:16<00:00, 7.36s/it]"}}, "baaee86655504f74bb420cdea0c3fec9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "bd997624b6014daa97de0a0d3d5cd6d4": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "be89590d7dae4b3d9a4392ab33d813be": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_13fb522182c7476dbd6aab4591ce516d", "placeholder": "\u200b", "style": "IPY_MODEL_05d872e05e794e61ae8166ee7907de40", "value": " 63/63 [02:12<00:00, 1.84it/s]"}}, "c110b07ae1cb48b4b679f3bac8042557": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "c23390cb6e0d4e49b34bd70a21087e1f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c2e99a546baa4a98835522046ee1de8d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c317520f95094c35a313ed26ccc25664": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_883126cd9ef44d86a3ad118f469b7f5b", "placeholder": "\u200b", "style": "IPY_MODEL_7411d122274444538165428c6cd4b402", "value": "100%"}}, "c5d21594175148e79b3a0dc994b487d1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c97cdd75b1e1418696907d02364c210a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ca212cb3e5544da2911fe777cfdfa110": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "cac0d5a113ac4b57a1926e6f309d084d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_14497d175b7a418c9cd14143a9026302", "IPY_MODEL_5134ea30614147eaa5039b014c5a34b9", "IPY_MODEL_be89590d7dae4b3d9a4392ab33d813be"], "layout": "IPY_MODEL_71be54ec7bf74af28cc60094d150fdc3"}}, "cb985572e80a402390b071c127e52c21": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cd1d880909c14de3a2141cad8d10f9ca": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d059874d56b5493e9dfc25abb5774f52": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d213da6ccea74eed8ef0bbb3fb74feb7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e719fd994cfd4f4cb89c6c2351e49aa8", "placeholder": "\u200b", "style": "IPY_MODEL_07e7e6b8c1d043a3b98f0e261e828adb", "value": " 7/7 [00:02<00:00, 1.87it/s]"}}, "d2b63b1c5a254f188639ce7eeb412837": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "d6400ad5055b4433b104911506c296c6": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_923889c989784feda67b6be7aabc626c", "placeholder": "\u200b", "style": "IPY_MODEL_8ed7980aa09047a38cf9b750b7bf3c6d", "value": " 7/7 [00:00<00:00, 7.51it/s]"}}, "d69e7b1f01eb4683ad4303d9e39e2ea7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e9179f1e952c4c499459bbc4e34376d3", "placeholder": "\u200b", "style": "IPY_MODEL_3844b58d18f24dde95e42efbe453ec46", "value": "Y: 100%"}}, "d7744380e7494d79be93468bb59f2ffb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "d7acb225e3bc45a1ab677b15742a5a42": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d059874d56b5493e9dfc25abb5774f52", "placeholder": "\u200b", "style": "IPY_MODEL_f369e83936694c498b740cffafabcadb", "value": "C-Mn: 100%"}}, "d7dc8ccd66e24ec594fdf510b72a5845": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "dc7f3a441f444cd48f0e6eb3654f3b0d": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "dd49f011c827409fbe3630b1f685377b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "dd7cbcbdaecb4720b3fae595796d7be8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ddcaf821695e4a05a0e11010f9b8d454": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_a9b29f5e38c1438e809db9642d1cf38f", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_86ddd15b2f814facacad56c18388cde9", "value": 7.0}}, "dddd07190ac14dff9887004b3449004f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "df3e2fdf38f345cead6243ab6dcc52d7": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e0f050169e7e4f22a7dacab479634c69": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8e9b142e882344d0b4f9cc28c9dce318", "placeholder": "\u200b", "style": "IPY_MODEL_2a5e5a0dca324dbdbb822fea591a0cb3", "value": "Mn-Y: 100%"}}, "e1331b7357c846c086a640c61f55b2ec": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e1a2987cc92045159fbce172fb23eddd": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8611a00a43ce4a2799df856502a2d299", "placeholder": "\u200b", "style": "IPY_MODEL_baaee86655504f74bb420cdea0c3fec9", "value": " 63/63 [00:09<00:00, 9.58it/s]"}}, "e2c62bed2b9c4d619e0ce535c2236f1b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_03c57f1ea85e48a5bc6ae0f791bc12d5", "placeholder": "\u200b", "style": "IPY_MODEL_2fb0a42ccc7b479a8828059b0cfed84f", "value": "100%"}}, "e2d7d796e0f549e987177ee6892ab1d3": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_dc7f3a441f444cd48f0e6eb3654f3b0d", "placeholder": "\u200b", "style": "IPY_MODEL_c5d21594175148e79b3a0dc994b487d1", "value": " 7/7 [00:00<00:00, 4.48it/s]"}}, "e375b56c8b124d39a95109375e3f5b04": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e447100efc304871a76d567b4525baaa": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6f1865d7a62049de87a5805257ce6ccf", "placeholder": "\u200b", "style": "IPY_MODEL_dddd07190ac14dff9887004b3449004f", "value": " 4/4 [00:00<00:00, 3.09it/s]"}}, "e5f2a2e8c7ab435fa10755863577a824": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e6159ca198b44421b5959a9fed590faf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e719fd994cfd4f4cb89c6c2351e49aa8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e783d09858bb4ee9be30fc71ce26fcd6": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e9179f1e952c4c499459bbc4e34376d3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ea58b84bd2c543f3839290cb50f6d31d": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ebe6da3072404404aeb41316e2f693d5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "ebed498e4db241ebab93859ff0c7cba0": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ec6aeaa3be974b4cb768ae20ed2e0314": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c23390cb6e0d4e49b34bd70a21087e1f", "placeholder": "\u200b", "style": "IPY_MODEL_1b1d87eff3cd4fd0828a0ec6a6dbb2a7", "value": "500000/1000000: 100%"}}, "f182cf6650a14926b46bba5bd4b5d432": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "f23cb8c1bece41ec97d79fecf2c3f499": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5479e2f255484d56b4df2c05077be77f", "placeholder": "\u200b", "style": "IPY_MODEL_8d844f43284c40b19427bb2f21ee7c0b", "value": "Y: 100%"}}, "f255a57b299e498dab9328cfe76fe19c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_3d3cbe01898a4e88b9f29b0ea47da9ec", "IPY_MODEL_1be41861866240f0aa124edb2abb8246", "IPY_MODEL_69ff0638a0044cfc9f398ab3e74198e4"], "layout": "IPY_MODEL_507e7764f6564e9cb98895043a1f38cc"}}, "f369e83936694c498b740cffafabcadb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "f696baabf8d0492181eeb2580e97fe12": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_43c2b3bf887b4cbfa232210bee8719b3", "placeholder": "\u200b", "style": "IPY_MODEL_3143c7ae6fa3444a80d3a01f7463ca4d", "value": "Y: 100%"}}, "fb1c843a88e1489daaba9f5206cc19e5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}}, "version_major": 2, "version_minor": 0} ":"B"===l&&9===c?t+="B":ot(l)&&(t+=at[c/3+5]));return a?I+t:t}function ct(t,e){for(var r=[],n={},i=0;i1&&r=i.min&&t=0,a=u(t,e[1])<=0;return(r||i)&&(n||a)}if(t.tickformatstops&&t.tickformatstops.length>0)switch(t.type){case"date":case"linear":for(e=0;e=o(i)))){r=n;break}break;case"log":for(e=0;e0?r.bottom-f:0,h)))),e.automargin){n={x:0,y:0,r:0,l:0,t:0,b:0};var p=[0,1];if("x"===d){if("b"===l?n[l]=e._depth:(n[l]=e._depth=Math.max(r.width>0?f-r.top:0,h),p.reverse()),r.width>0){var m=r.right-(e._offset+e._length);m>0&&(n.xr=1,n.r=m);var v=e._offset-r.left;v>0&&(n.xl=0,n.l=v)}}else if("l"===l?n[l]=e._depth=Math.max(r.height>0?f-r.left:0,h):(n[l]=e._depth=Math.max(r.height>0?r.right-f:0,h),p.reverse()),r.height>0){var y=r.bottom-(e._offset+e._length);y>0&&(n.yb=0,n.b=y);var x=e._offset-r.top;x>0&&(n.yt=1,n.t=x)}n[g]="free"===e.anchor?e.position:e._anchorAxis.domain[p[0]],e.title.text!==c._dfltTitle[d]&&(n[l]+=ht(e)+(e.title.standoff||0)),e.mirror&&"free"!==e.anchor&&((i={x:0,y:0,r:0,l:0,t:0,b:0})[u]=e.linewidth,e.mirror&&!0!==e.mirror&&(i[u]+=h),!0===e.mirror||"ticks"===e.mirror?i[g]=e._anchorAxis.domain[p[1]]:"all"!==e.mirror&&"allticks"!==e.mirror||(i[g]=[e._counterDomainMin,e._counterDomainMax][p[1]]))}K&&(s=o.getComponentMethod("rangeslider","autoMarginOpts")(t,e)),a.autoMargin(t,gt(e),n),a.autoMargin(t,mt(e),i),a.autoMargin(t,vt(e),s)})),r.skipTitle||K&&"bottom"===e.side||Z.push((function(){return function(t,e){var r,n=t._fullLayout,i=e._id,a=i.charAt(0),o=e.title.font.size;if(e.title.hasOwnProperty("standoff"))r=e._depth+e.title.standoff+ht(e);else{var s=-1!==(e.ticklabelposition||"").indexOf("inside");if("multicategory"===e.type)r=e._depth;else{var l=1.5*o;s&&(l=.5*o,"outside"===e.ticks&&(l+=e.ticklen)),r=10+l+(e.linewidth?e.linewidth-1:0)}s||(r+="x"===a?"top"===e.side?o*(e.showticklabels?1:0):o*(e.showticklabels?1.5:.5):"right"===e.side?o*(e.showticklabels?1:.5):o*(e.showticklabels?.5:0))}var c,f,p,d,g=B.getPxPosition(t,e);"x"===a?(f=e._offset+e._length/2,p="top"===e.side?g-r:g+r):(p=e._offset+e._length/2,f="right"===e.side?g+r:g-r,c={rotate:"-90",offset:0});if("multicategory"!==e.type){var m=e._selections[e._id+"tick"];if(d={selection:m,side:e.side},m&&m.node()&&m.node().parentNode){var v=h.getTranslate(m.node().parentNode);d.offsetLeft=v.x,d.offsetTop=v.y}e.title.hasOwnProperty("standoff")&&(d.pad=0)}return u.draw(t,i+"title",{propContainer:e,propName:e._name+".title.text",placeholder:n._dfltTitle[a],avoid:d,transform:c,attributes:{x:f,y:p,"text-anchor":"middle"}})}(t,e)})),s.syncOrAsync(Z)}}function Q(t){var r=p+(t||"tick");return w[r]||(w[r]=function(t,e){var r,n,i,a;t._selections[e].size()?(r=1/0,n=-1/0,i=1/0,a=-1/0,t._selections[e].each((function(){var t=dt(this),e=h.bBox(t.node().parentNode);r=Math.min(r,e.top),n=Math.max(n,e.bottom),i=Math.min(i,e.left),a=Math.max(a,e.right)}))):(r=0,n=0,i=0,a=0);return{top:r,bottom:n,left:i,right:a,height:n-r,width:a-i}}(e,r)),w[r]}},B.getTickSigns=function(t){var e=t._id.charAt(0),r={x:"top",y:"right"}[e],n=t.side===r?1:-1,i=[-1,1,n,-n];return"inside"!==t.ticks==("x"===e)&&(i=i.map((function(t){return-t}))),t.side&&i.push({l:-1,t:-1,r:1,b:1}[t.side.charAt(0)]),i},B.makeTransTickFn=function(t){return"x"===t._id.charAt(0)?function(e){return l(t._offset+t.l2p(e.x),0)}:function(e){return l(0,t._offset+t.l2p(e.x))}},B.makeTransTickLabelFn=function(t){var e=function(t){var e=t.ticklabelposition||"",r=function(t){return-1!==e.indexOf(t)},n=r("top"),i=r("left"),a=r("right"),o=r("bottom"),s=r("inside"),l=o||i||n||a;if(!l&&!s)return[0,0];var c=t.side,u=l?(t.tickwidth||0)/2:0,f=3,h=t.tickfont?t.tickfont.size:12;(o||n)&&(u+=h*D,f+=(t.linewidth||0)/2);(i||a)&&(u+=(t.linewidth||0)/2,f+=3);s&&"top"===c&&(f-=h*(1-D));(i||n)&&(u=-u);"bottom"!==c&&"right"!==c||(f=-f);return[l?u:0,s?f:0]}(t),r=e[0],n=e[1];return"x"===t._id.charAt(0)?function(e){return l(r+t._offset+t.l2p(ut(e)),n)}:function(e){return l(n,r+t._offset+t.l2p(ut(e)))}},B.makeTickPath=function(t,e,r,n){n=void 0!==n?n:t.ticklen;var i=t._id.charAt(0),a=(t.linewidth||1)/2;return"x"===i?"M0,"+(e+a*r)+"v"+n*r:"M"+(e+a*r)+",0h"+n*r},B.makeLabelFns=function(t,e,r){var n=t.ticklabelposition||"",a=function(t){return-1!==n.indexOf(t)},o=a("top"),l=a("left"),c=a("right"),u=a("bottom")||l||o||c,f=a("inside"),h="inside"===n&&"inside"===t.ticks||!f&&"outside"===t.ticks&&"boundaries"!==t.tickson,p=0,d=0,g=h?t.ticklen:0;if(f?g*=-1:u&&(g=0),h&&(p+=g,r)){var m=s.deg2rad(r);p=g*Math.cos(m)+1,d=g*Math.sin(m)}t.showticklabels&&(h||t.showline)&&(p+=.2*t.tickfont.size);var v,y,x,b,_,w={labelStandoff:p+=(t.linewidth||1)/2*(f?-1:1),labelShift:d},T=0,k=t.side,M=t._id.charAt(0),A=t.tickangle;if("x"===M)b=(_=!f&&"bottom"===k||f&&"top"===k)?1:-1,f&&(b*=-1),v=d*b,y=e+p*b,x=_?1:-.2,90===Math.abs(A)&&(f?x+=O:x=-90===A&&"bottom"===k?D:90===A&&"top"===k?O:.5,T=O/2*(A/90)),w.xFn=function(t){return t.dx+v+T*t.fontSize},w.yFn=function(t){return t.dy+y+t.fontSize*x},w.anchorFn=function(t,e){if(u){if(l)return"end";if(c)return"start"}return i(e)&&0!==e&&180!==e?e*b<0!==f?"end":"start":"middle"},w.heightFn=function(e,r,n){return r<-60||r>60?-.5*n:"top"===t.side!==f?-n:0};else if("y"===M){if(b=(_=!f&&"left"===k||f&&"right"===k)?1:-1,f&&(b*=-1),v=p,y=d*b,x=0,f||90!==Math.abs(A)||(x=-90===A&&"left"===k||90===A&&"right"===k?D:.5),f){var S=i(A)?+A:0;if(0!==S){var E=s.deg2rad(S);T=Math.abs(Math.sin(E))*D*b,x=0}}w.xFn=function(t){return t.dx+e-(v+t.fontSize*x)*b+T*t.fontSize},w.yFn=function(t){return t.dy+y+t.fontSize*O},w.anchorFn=function(t,e){return i(e)&&90===Math.abs(e)?"middle":_?"end":"start"},w.heightFn=function(e,r,n){return"right"===t.side&&(r*=-1),r<-30?-n:r<30?-.5*n:0}}return w},B.drawTicks=function(t,e,r){r=r||{};var n=e._id+"tick",i=r.vals;"period"===e.ticklabelmode&&(i=i.slice()).shift();var a=r.layer.selectAll("path."+n).data(e.ticks?i:[],ft);a.exit().remove(),a.enter().append("path").classed(n,1).classed("ticks",1).classed("crisp",!1!==r.crisp).call(f.stroke,e.tickcolor).style("stroke-width",h.crispRound(t,e.tickwidth,1)+"px").attr("d",r.path),a.attr("transform",r.transFn)},B.drawGrid=function(t,e,r){r=r||{};var n=e._id+"grid",i=r.vals,a=r.counterAxis;if(!1===e.showgrid)i=[];else if(a&&B.shouldShowZeroLine(t,e,a))for(var o="array"===e.tickmode,s=0;so||i.lefto||i.top+(e.tickangle?0:t.fontSize/4)1)for(n=1;n2*o}(i,e))return"date";var m="strict"!==r.autotypenumbers;return function(t,e){for(var r=t.length,n=f(r),i=0,o=0,s={},u=0;u2*i}(i,m)?"category":function(t,e){for(var r=t.length,n=0;n=2){var l,c,u="";if(2===o.length)for(l=0;l<2;l++)if(c=y(o[l])){u=d;break}var f=i("pattern",u);if(f===d)for(l=0;l<2;l++)(c=y(o[l]))&&(e.bounds[l]=o[l]=c-1);if(f)for(l=0;l<2;l++)switch(c=o[l],f){case d:if(!n(c))return void(e.enabled=!1);if((c=+c)!==Math.floor(c)||c<0||c>=7)return void(e.enabled=!1);e.bounds[l]=o[l]=c;break;case g:if(!n(c))return void(e.enabled=!1);if((c=+c)<0||c>24)return void(e.enabled=!1);e.bounds[l]=o[l]=c}if(!1===r.autorange){var h=r.range;if(h[0]h[1])return void(e.enabled=!1)}else if(o[0]>h[0]&&o[1]<h[1])return void(e.enabled=!1)}}else{var p=i("values");if(!p||!p.length)return void(e.enabled=!1);i("dvalue")}}}e.exports=function(t,e,r,n,g){var v,y=n.letter,x=n.font||{},b=n.splomStash||{},_=r("visible",!n.visibleDflt),w=e._template||{},T=e.type||w.type||"-";"date"===T&&(i.getComponentMethod("calendars","handleDefaults")(t,e,"calendar",n.calendar),n.noTicklabelmode||(v=r("ticklabelmode")));n.noTicklabelposition&&"multicategory"!==T||a.coerce(t,e,{ticklabelposition:{valType:"enumerated",dflt:"outside",values:"period"===v?["outside","inside"]:"x"===y?["outside","inside","outside left","inside left","outside right","inside right"]:["outside","inside","outside top","inside top","outside bottom","inside bottom"]}},"ticklabelposition"),p(e,g);var k=!e.isValidRange(t.range);k&&n.reverseDflt&&(k="reversed"),!r("autorange",k)||"linear"!==T&&"-"!==T||r("rangemode"),r("range"),e.cleanRange(),f(t,e,r,n),"category"===T||n.noHover||r("hoverformat");var M=r("color"),A=M!==s.color.dflt?M:x.color,S=b.label||g._dfltTitle[y];if(u(t,e,r,T,n,{pass:1}),!_)return e;r("title.text",S),a.coerceFont(r,"title.font",{family:x.family,size:Math.round(1.2*x.size),color:A}),l(t,e,r,T),u(t,e,r,T,n,{pass:2}),c(t,e,r,n),h(t,e,r,{dfltColor:M,bgColor:n.bgColor,showGrid:n.showGrid,attributes:s}),(e.showline||e.ticks)&&r("mirror"),n.automargin&&r("automargin");var E,C="multicategory"===T;n.noTickson||"category"!==T&&!C||!e.ticks&&!e.showgrid||(C&&(E="boundaries"),"boundaries"===r("tickson",E)&&delete e.ticklabelposition);C&&(r("showdividers")&&(r("dividercolor"),r("dividerwidth")));if("date"===T)if(o(t,e,{name:"rangebreaks",inclusionAttr:"enabled",handleItemDefaults:m}),e.rangebreaks.length){for(var L=0;L<e.rangebreaks.length;L++)if(e.rangebreaks[L].pattern===d){e._hasDayOfWeekBreaks=!0;break}if(p(e,g),g._has("scattergl")||g._has("splom"))for(var I=0;I<n.data.length;I++){var P=n.data[I];"scattergl"!==P.type&&"splom"!==P.type||(P.visible=!1,a.warn(P.type+" traces do not work on axes with rangebreaks. Setting trace "+P.index+" to `visible: false`."))}}else delete e.rangebreaks;return e};var v={sun:1,mon:2,tue:3,wed:4,thu:5,fri:6,sat:7};function y(t){if("string"==typeof t)return v[t.substr(0,3).toLowerCase()]}},{"../../lib":778,"../../registry":911,"../array_container_defaults":823,"./category_order_defaults":832,"./constants":834,"./layout_attributes":842,"./line_grid_defaults":844,"./set_convert":848,"./tick_label_defaults":849,"./tick_mark_defaults":850,"./tick_value_defaults":851,"fast-isnumeric":241}],831:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("./constants");function a(t,e){if(e&&e.length)for(var r=0;rn?1:-1:+(t.substr(1)||1)-+(e.substr(1)||1)},r.ref2id=function(t){return!!/^[xyz]/.test(t)&&t.split(" ")[0]},r.isLinked=function(t,e){return a(e,t._axisMatchGroups)||a(e,t._axisConstraintGroups)}},{"../../registry":911,"./constants":834}],832:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){if("category"===e.type){var i,a=t.categoryarray,o=Array.isArray(a)&&a.length>0;o&&(i="array");var s,l=r("categoryorder",i);"array"===l&&(s=r("categoryarray")),o||"array"!==l||(l=e.categoryorder="trace"),"trace"===l?e._initialCategories=[]:"array"===l?e._initialCategories=s.slice():(s=function(t,e){var r,n,i,a=e.dataAttr||t._id.charAt(0),o={};if(e.axData)r=e.axData;else for(r=[],n=0;n<e.data.length;n++){var s=e.data[n];s[a+"axis"]===t._id&&r.push(s)}for(n=0;n<r.length;n++){var l=r[n][a];for(i=0;i<l.length;i++){var c=l[i];null!=c&&(o[c]=1)}}return Object.keys(o)}(e,n).sort(),"category ascending"===l?e._initialCategories=s:"category descending"===l&&(e._initialCategories=s.reverse()))}}},{}],833:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib"),a=t("../../constants/numerical"),o=a.ONEDAY,s=a.ONEWEEK;r.dtick=function(t,e){var r="log"===e,i="date"===e,a="category"===e,s=i?o:1;if(!t)return s;if(n(t))return(t=Number(t))<=0?s:a?Math.max(1,Math.round(t)):i?Math.max(.1,t):t;if("string"!=typeof t||!i&&!r)return s;var l=t.charAt(0),c=t.substr(1);return(c=n(c)?Number(c):0)<=0||!(i&&"M"===l&&c===Math.round(c)||r&&"L"===l||r&&"D"===l&&(1===c||2===c))?s:t},r.tick0=function(t,e,r,a){return"date"===e?i.cleanDate(t,i.dateTick0(r,a%s==0?1:0)):"D1"!==a&&"D2"!==a?n(t)?Number(t):0:void 0}},{"../../constants/numerical":753,"../../lib":778,"fast-isnumeric":241}],834:[function(t,e,r){"use strict";var n=t("../../lib/regex").counter;e.exports={idRegex:{x:n("x","( domain)?"),y:n("y","( domain)?")},attrRegex:n("[xy]axis"),xAxisMatch:n("xaxis"),yAxisMatch:n("yaxis"),AX_ID_PATTERN:/^[xyz][0-9]*( domain)?$/,AX_NAME_PATTERN:/^[xyz]axis[0-9]*$/,SUBPLOT_PATTERN:/^x([0-9]*)y([0-9]*)$/,HOUR_PATTERN:"hour",WEEKDAY_PATTERN:"day of week",MINDRAG:8,MINSELECT:12,MINZOOM:20,DRAGGERSIZE:20,BENDPX:1.5,REDRAWDELAY:50,SELECTDELAY:100,SELECTID:"-select",DFLTRANGEX:[-1,6],DFLTRANGEY:[-1,4],traceLayerClasses:["imagelayer","heatmaplayer","contourcarpetlayer","contourlayer","funnellayer","waterfalllayer","barlayer","carpetlayer","violinlayer","boxlayer","ohlclayer","scattercarpetlayer","scatterlayer"],clipOnAxisFalseQuery:[".scatterlayer",".barlayer",".funnellayer",".waterfalllayer"],layerValue2layerClass:{"above traces":"above","below traces":"below"}}},{"../../lib/regex":795}],835:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./autorange"),a=t("./axis_ids").id2name,o=t("./layout_attributes"),s=t("./scale_zoom"),l=t("./set_convert"),c=t("../../constants/numerical").ALMOST_EQUAL,u=t("../../constants/alignment").FROM_BL;function f(t,e,r){var i=r.axIds,s=r.layoutOut,l=r.hasImage,c=s._axisConstraintGroups,u=s._axisMatchGroups,f=e._id,g=f.charAt(0),m=((s._splomAxes||{})[g]||{})[f]||{},v=e._id,y="x"===v.charAt(0);function x(r,i){return n.coerce(t,e,o,r,i)}e._matchGroup=null,e._constraintGroup=null,x("constrain",l?"domain":"range"),n.coerce(t,e,{constraintoward:{valType:"enumerated",values:y?["left","center","right"]:["bottom","middle","top"],dflt:y?"center":"middle"}},"constraintoward");var b,_,w=e.type,T=[];for(b=0;b<i.length;b++){if((_=i[b])!==v)s[a(_)].type===w&&T.push(_)}var k=p(c,v);if(k){var M=[];for(b=0;b<T.length;b++)k[_=T[b]]||M.push(_);T=M}var A,S,E=T.length;E&&(t.matches||m.matches)&&(A=n.coerce(t,e,{matches:{valType:"enumerated",values:T,dflt:-1!==T.indexOf(m.matches)?m.matches:void 0}},"matches"));var C=l&&!y?e.anchor:void 0;if(E&&!A&&(t.scaleanchor||C)&&(S=n.coerce(t,e,{scaleanchor:{valType:"enumerated",values:T}},"scaleanchor",C)),A){e._matchGroup=d(u,v,A,1);var L=s[a(A)],I=h(s,e)/h(s,L);y!==("x"===A.charAt(0))&&(I=(y?"x":"y")+I),d(c,v,A,I)}else t.matches&&-1!==i.indexOf(t.matches)&&n.warn("ignored "+e._name+'.matches: "'+t.matches+'" to avoid an infinite loop');if(S){var P=x("scaleratio");P||(P=e.scaleratio=1),d(c,v,S,P)}else t.scaleanchor&&-1!==i.indexOf(t.scaleanchor)&&n.warn("ignored "+e._name+'.scaleanchor: "'+t.scaleanchor+'" to avoid either an infinite loop and possibly inconsistent scaleratios, or because this axis declares a *matches* constraint.')}function h(t,e){var r=e.domain;return r||(r=t[a(e.overlaying)].domain),r[1]-r[0]}function p(t,e){for(var r=0;r<t.length;r++)if(t[r][e])return t[r];return null}function d(t,e,r,n){var i,a,o,s,l,c=p(t,e);null===c?((c={})[e]=1,l=t.length,t.push(c)):l=t.indexOf(c);var u=Object.keys(c);for(i=0;i<t.length;i++)if(o=t[i],i!==l&&o[r]){var f=o[r];for(a=0;a<u.length;a++)o[s=u[a]]=g(f,g(n,c[s]));return void t.splice(l,1)}if(1!==n)for(a=0;a<u.length;a++){var h=u[a];c[h]=g(n,c[h])}c[r]=1}function g(t,e){var r,n,i="",a="";"string"==typeof t&&(r=(i=t.match(/^[xy]*/)[0]).length,t=+t.substr(r)),"string"==typeof e&&(n=(a=e.match(/^[xy]*/)[0]).length,e=+e.substr(n));var o=t*e;return r||n?r&&n&&i.charAt(0)!==a.charAt(0)?r===n?o:(r>n?i.substr(n):a.substr(r))+o:i+a+t*e:o}function m(t,e){for(var r=e._size,n=r.h/r.w,i={},a=Object.keys(t),o=0;oc*x)||T)for(r=0;rz&&FI&&(I=F);h/=(I-L)/(2*P),L=l.l2r(L),I=l.l2r(I),l.range=l._input.range=S=0?Math.min(t,.9):1/(1/Math.max(t,-.3)+3.222))}function B(t,e,r,n,i){return t.append("path").attr("class","zoombox").style({fill:e>.2?"rgba(0,0,0,0)":"rgba(255,255,255,0)","stroke-width":0}).attr("transform",l(r,n)).attr("d",i+"Z")}function N(t,e,r){return t.append("path").attr("class","zoombox-corners").style({fill:u.background,stroke:u.defaultLine,"stroke-width":1,opacity:0}).attr("transform",l(e,r)).attr("d","M0,0Z")}function j(t,e,r,n,i,a){t.attr("d",n+"M"+r.l+","+r.t+"v"+r.h+"h"+r.w+"v-"+r.h+"h-"+r.w+"Z"),U(t,e,i,a)}function U(t,e,r,n){r||(t.transition().style("fill",n>.2?"rgba(0,0,0,0.4)":"rgba(255,255,255,0.3)").duration(200),e.transition().style("opacity",1).duration(200))}function V(t){n.select(t).selectAll(".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners").remove()}function q(t){I&&t.data&&t._context.showTips&&(s.notifier(s._(t,"Double-click to zoom back out"),"long"),I=!1)}function H(t){var e=Math.floor(Math.min(t.b-t.t,t.r-t.l,L)/2);return"M"+(t.l-3.5)+","+(t.t-.5+e)+"h3v"+-e+"h"+e+"v-3h-"+(e+3)+"ZM"+(t.r+3.5)+","+(t.t-.5+e)+"h-3v"+-e+"h"+-e+"v-3h"+(e+3)+"ZM"+(t.r+3.5)+","+(t.b+.5-e)+"h-3v"+e+"h"+-e+"v3h"+(e+3)+"ZM"+(t.l-3.5)+","+(t.b+.5-e)+"h3v"+e+"h"+e+"v3h-"+(e+3)+"Z"}function G(t,e,r,n,i){for(var a,o,l,c,u=!1,f={},h={},p=(i||{}).xaHash,d=(i||{}).yaHash,g=0;g=0)i._fullLayout._deactivateShape(i);else{var a=i._fullLayout.clickmode;if(V(i),2!==t||mt||qt(),gt)a.indexOf("select")>-1&&A(r,i,Z,J,e.id,Lt),a.indexOf("event")>-1&&h.click(i,r,e.id);else if(1===t&&mt){var s=d?P:I,l="s"===d||"w"===m?0:1,u=s._name+".range["+l+"]",f=function(t,e){var r,i=t.range[e],a=Math.abs(i-t.range[1-e]);return"date"===t.type?i:"log"===t.type?(r=Math.ceil(Math.max(0,-Math.log(a)/Math.LN10))+3,n.format("."+r+"g")(Math.pow(10,i))):(r=Math.floor(Math.log(Math.abs(i))/Math.LN10)-Math.floor(Math.log(a)/Math.LN10)+4,n.format("."+String(r)+"g")(i))}(s,l),p="left",g="middle";if(s.fixedrange)return;d?(g="n"===d?"top":"bottom","right"===s.side&&(p="right")):"e"===m&&(p="right"),i._context.showAxisRangeEntryBoxes&&n.select(xt).call(c.makeEditable,{gd:i,immediate:!0,background:i._fullLayout.paper_bgcolor,text:String(f),fill:s.tickfont?s.tickfont.color:"#444",horizontalAlign:p,verticalAlign:g}).on("edit",(function(t){var e=s.d2r(t);void 0!==e&&o.call("_guiRelayout",i,u,e)}))}}}function zt(e,r){if(t._transitioningWithDuration)return!1;var n=Math.max(0,Math.min($,ht*e+bt)),i=Math.max(0,Math.min(tt,pt*r+_t)),a=Math.abs(n-bt),o=Math.abs(i-_t);function s(){At="",wt.r=wt.l,wt.t=wt.b,Et.attr("d","M0,0Z")}if(wt.l=Math.min(bt,n),wt.r=Math.max(bt,n),wt.t=Math.min(_t,i),wt.b=Math.max(_t,i),et.isSubplotConstrained)a>L||o>L?(At="xy",a/$>o/tt?(o=a*tt/$,_t>i?wt.t=_t-o:wt.b=_t+o):(a=o*$/tt,bt>n?wt.l=bt-a:wt.r=bt+a),Et.attr("d",H(wt))):s();else if(rt.isSubplotConstrained)if(a>L||o>L){At="xy";var l=Math.min(wt.l/$,(tt-wt.b)/tt),c=Math.max(wt.r/$,(tt-wt.t)/tt);wt.l=l*$,wt.r=c*$,wt.b=(1-l)*tt,wt.t=(1-c)*tt,Et.attr("d",H(wt))}else s();else!it||o0){var u;if(rt.isSubplotConstrained||!nt&&1===it.length){for(u=0;u<Z.length;u++)Z[u].range=Z[u]._r.slice(),S(Z[u],1-r/tt);o=(e=r*$/tt)/2}if(rt.isSubplotConstrained||!it&&1===nt.length){for(u=0;u<J.length;u++)J[u].range=J[u]._r.slice(),S(J[u],1-e/$);s=(r=e*tt/$)/2}}rt.isSubplotConstrained&&it||Ut("x"),rt.isSubplotConstrained&&nt||Ut("y");var f=$-e,h=tt-r;!rt.isSubplotConstrained||nt&&it||(nt?(s=o?0:e*tt/$,h=f*tt/$):(o=s?0:r*$/tt,f=h*$/tt)),Gt([o,s,f,h]),Vt(),t.emit("plotly_relayouting",ft)}function p(t,e,r){for(var n,i,a=1-e,o=0;o<t.length;o++){var s=t[o];if(!s.fixedrange){n=s,i=s._rl[a]+(s._rl[e]-s._rl[a])/F(r/s._length);var l=s.l2r(i);!1!==l&&void 0!==l&&(s.range[e]=l)}}return n._length*(n._rl[e]-i)/(n._rl[e]-n._rl[a])}}function Ut(t,e){for(var r=rt.isSubplotConstrained?{x:J,y:Z}[t]:rt[t+"axes"],n=rt.isSubplotConstrained?{x:Z,y:J}[t]:[],i=0;i<r.length;i++){var a=r[i],o=a._id,s=rt.xLinks[o]||rt.yLinks[o],l=n[0]||U[s]||X[s];l&&(e?(e[a._name+".range[0]"]=e[l._name+".range[0]"],e[a._name+".range[1]"]=e[l._name+".range[1]"]):a.range=l.range.slice())}}function Vt(){var e,r=[];function n(t){for(e=0;e<t.length;e++)t[e].fixedrange||r.push(t[e]._id)}for(ot&&(n(Z),n(et.xaxes),n(rt.xaxes)),st&&(n(J),n(et.yaxes),n(rt.yaxes)),ft={},e=0;e<r.length;e++){var i=r[e],a=T(t,i);p.drawOne(t,a,{skipTitle:!0}),ft[a._name+".range[0]"]=a.range[0],ft[a._name+".range[1]"]=a.range[1]}p.redrawComponents(t,r)}function qt(){if(!t._transitioningWithDuration){var e=t._context.doubleClick,r=[];nt&&(r=r.concat(Z)),it&&(r=r.concat(J)),rt.xaxes&&(r=r.concat(rt.xaxes)),rt.yaxes&&(r=r.concat(rt.yaxes));var n,i,a,s={};if("reset+autosize"===e)for(e="autosize",i=0;i<r.length;i++)if((n=r[i])._rangeInitial&&(n.range[0]!==n._rangeInitial[0]||n.range[1]!==n._rangeInitial[1])||!n._rangeInitial&&!n.autorange){e="reset";break}if("autosize"===e)for(i=0;i<r.length;i++)(n=r[i]).fixedrange||(s[n._name+".autorange"]=!0);else if("reset"===e)for((nt||et.isSubplotConstrained)&&(r=r.concat(et.xaxes)),it&&!et.isSubplotConstrained&&(r=r.concat(et.yaxes)),et.isSubplotConstrained&&(nt?it||(r=r.concat(J)):r=r.concat(Z)),i=0;i<r.length;i++)(n=r[i]).fixedrange||(n._rangeInitial?(a=n._rangeInitial,s[n._name+".range[0]"]=a[0],s[n._name+".range[1]"]=a[1]):s[n._name+".autorange"]=!0);t.emit("plotly_doubleclick",null),o.call("_guiRelayout",t,s)}}function Ht(){Gt([0,0,$,tt]),s.syncOrAsync([w.previousPromises,function(){t._fullLayout._replotting=!1,o.call("_guiRelayout",t,ft)}],t)}function Gt(e){var r,n,i,a,l=t._fullLayout,c=l._plots,u=l._subplots.cartesian;if(ct&&o.subplotsRegistry.splom.drag(t),lt)for(r=0;r<u.length;r++)if(i=(n=c[u[r]]).xaxis,a=n.yaxis,n._scene){var h=s.simpleMap(i.range,i.r2l),p=s.simpleMap(a.range,a.r2l);n._scene.update({range:[h[0],p[0],h[1],p[1]]})}if((ct||lt)&&(b(t),_(t)),ut){var g=e[2]/I._length,v=e[3]/P._length;for(r=0;r<u.length;r++){i=(n=c[u[r]]).xaxis,a=n.yaxis;var y,x,w,T,k=(ot||rt.isSubplotConstrained)&&!i.fixedrange&&U[i._id],M=(st||rt.isSubplotConstrained)&&!a.fixedrange&&X[a._id];if(k?(y=g,w=m||rt.isSubplotConstrained?e[0]:Xt(i,y)):rt.xaHash[i._id]?(y=g,w=e[0]*i._length/I._length):rt.yaHash[i._id]?(y=v,w="ns"===it?-e[1]*i._length/P._length:Xt(i,y,{n:"top",s:"bottom"}[it])):w=Wt(i,y=Yt(i,g,v)),M?(x=v,T=d||rt.isSubplotConstrained?e[1]:Xt(a,x)):rt.yaHash[a._id]?(x=v,T=e[1]*a._length/P._length):rt.xaHash[a._id]?(x=g,T="ew"===nt?-e[0]*a._length/I._length:Xt(a,x,{e:"right",w:"left"}[nt])):T=Wt(a,x=Yt(a,g,v)),y||x){y||(y=1),x||(x=1);var A=i._offset-w/y,S=a._offset-T/x;n.clipRect.call(f.setTranslate,w,T).call(f.setScale,y,x),n.plot.call(f.setTranslate,A,S).call(f.setScale,1/y,1/x),y===n.xScaleFactor&&x===n.yScaleFactor||(f.setPointGroupScale(n.zoomScalePts,y,x),f.setTextPointsScale(n.zoomScaleTxt,y,x)),f.hideOutsideRangePoints(n.clipOnAxisFalseTraces,n),n.xScaleFactor=y,n.yScaleFactor=x}}}}function Yt(t,e,r){return t.fixedrange?0:ot&&et.xaHash[t._id]?e:st&&(et.isSubplotConstrained?et.xaHash:et.yaHash)[t._id]?r:0}function Wt(t,e){return e?(t.range=t._r.slice(),S(t,e),Xt(t,e)):0}function Xt(t,e,r){return t._length*(1-e)*x[r||t.constraintoward||"middle"]}return d.length*m.length!=1&&Y(xt,(function(e){if(t._context._scrollZoom.cartesian||t._fullLayout._enablescrollzoom){if(It(),t._transitioningWithDuration)return e.preventDefault(),void e.stopPropagation();vt(),clearTimeout(Ft);var r=-e.deltaY;if(isFinite(r)||(r=e.wheelDelta/10),isFinite(r)){var n,i=Math.exp(-Math.min(Math.max(r,-20),20)/200),a=Nt.draglayer.select(".nsewdrag").node().getBoundingClientRect(),o=(e.clientX-a.left)/a.width,l=(a.bottom-e.clientY)/a.height;if(ot){for(m||(o=.5),n=0;n<Z.length;n++)c(Z[n],o,i);Ut("x"),Rt[2]*=i,Rt[0]+=Rt[2]*o*(1/i-1)}if(st){for(d||(l=.5),n=0;n<J.length;n++)c(J[n],l,i);Ut("y"),Rt[3]*=i,Rt[1]+=Rt[3]*(1-l)*(1/i-1)}Gt(Rt),Vt(),t.emit("plotly_relayouting",ft),Ft=setTimeout((function(){Rt=[0,0,$,tt],Ht()}),Bt),e.preventDefault()}else s.log("Did not find wheel motion attributes: ",e)}function c(t,e,r){if(!t.fixedrange){var n=s.simpleMap(t.range,t.r2l),i=n[0]+(n[1]-n[0])*e;t.range=n.map((function(e){return t.l2r(i+(e-i)*r)}))}}})),xt},makeDragger:P,makeRectDragger:z,makeZoombox:B,makeCorners:N,updateZoombox:j,xyCorners:H,transitionZoombox:U,removeZoombox:V,showDoubleClickNotifier:q,attachWheelEventHandler:Y}},{"../../components/color":643,"../../components/dragelement":662,"../../components/dragelement/helpers":661,"../../components/drawing":665,"../../components/fx":683,"../../constants/alignment":745,"../../lib":778,"../../lib/clear_gl_canvases":762,"../../lib/setcursor":799,"../../lib/svg_text_utils":803,"../../plot_api/subroutines":818,"../../registry":911,"../plots":891,"./axes":828,"./axis_ids":831,"./constants":834,"./scale_zoom":846,"./select":847,d3:169,"has-passive-events":441,tinycolor2:576}],837:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/fx"),a=t("../../components/dragelement"),o=t("../../lib/setcursor"),s=t("./dragbox").makeDragBox,l=t("./constants").DRAGGERSIZE;r.initInteractions=function(t){var e=t._fullLayout;if(t._context.staticPlot)n.select(t).selectAll(".drag").remove();else if(e._has("cartesian")||e._has("splom")){Object.keys(e._plots||{}).sort((function(t,r){if((e._plots[t].mainplot&&!0)===(e._plots[r].mainplot&&!0)){var n=t.split("y"),i=r.split("y");return n[0]===i[0]?Number(n[1]||1)-Number(i[1]||1):Number(n[0]||1)-Number(i[0]||1)}return e._plots[t].mainplot?1:-1})).forEach((function(r){var n=e._plots[r],o=n.xaxis,c=n.yaxis;if(!n.mainplot){var u=s(t,n,o._offset,c._offset,o._length,c._length,"ns","ew");u.onmousemove=function(e){t._fullLayout._rehover=function(){t._fullLayout._hoversubplot===r&&t._fullLayout._plots[r]&&i.hover(t,e,r)},i.hover(t,e,r),t._fullLayout._lasthover=u,t._fullLayout._hoversubplot=r},u.onmouseout=function(e){t._dragging||(t._fullLayout._hoversubplot=null,a.unhover(t,e))},t._context.showAxisDragHandles&&(s(t,n,o._offset-l,c._offset-l,l,l,"n","w"),s(t,n,o._offset+o._length,c._offset-l,l,l,"n","e"),s(t,n,o._offset-l,c._offset+c._length,l,l,"s","w"),s(t,n,o._offset+o._length,c._offset+c._length,l,l,"s","e"))}if(t._context.showAxisDragHandles){if(r===o._mainSubplot){var f=o._mainLinePosition;"top"===o.side&&(f-=l),s(t,n,o._offset+.1*o._length,f,.8*o._length,l,"","ew"),s(t,n,o._offset,f,.1*o._length,l,"","w"),s(t,n,o._offset+.9*o._length,f,.1*o._length,l,"","e")}if(r===c._mainSubplot){var h=c._mainLinePosition;"right"!==c.side&&(h-=l),s(t,n,h,c._offset+.1*c._length,l,.8*c._length,"ns",""),s(t,n,h,c._offset+.9*c._length,l,.1*c._length,"s",""),s(t,n,h,c._offset,l,.1*c._length,"n","")}}}));var o=e._hoverlayer.node();o.onmousemove=function(r){r.target=t._fullLayout._lasthover,i.hover(t,r,e._hoversubplot)},o.onclick=function(e){e.target=t._fullLayout._lasthover,i.click(t,e)},o.onmousedown=function(e){t._fullLayout._lasthover.onmousedown(e)},r.updateFx(t)}},r.updateFx=function(t){var e=t._fullLayout,r="pan"===e.dragmode?"move":"crosshair";o(e._draggers,r)}},{"../../components/dragelement":662,"../../components/fx":683,"../../lib/setcursor":799,"./constants":834,"./dragbox":836,d3:169}],838:[function(t,e,r){"use strict";e.exports={clearOutlineControllers:function(t){var e=t._fullLayout._zoomlayer;e&&e.selectAll(".outline-controllers").remove()},clearSelect:function(t){var e=t._fullLayout._zoomlayer;e&&e.selectAll(".select-outline").remove(),t._fullLayout._drawing=!1}}},{}],839:[function(t,e,r){"use strict";var n=t("../../lib").strTranslate;function i(t,e){switch(t.type){case"log":return t.p2d(e);case"date":return t.p2r(e,0,t.calendar);default:return t.p2r(e)}}e.exports={p2r:i,r2p:function(t,e){switch(t.type){case"log":return t.d2p(e);case"date":return t.r2p(e,0,t.calendar);default:return t.r2p(e)}},axValue:function(t){var e="y"===t._id.charAt(0)?1:0;return function(r){return i(t,r[e])}},getTransform:function(t){return n(t.xaxis._offset,t.yaxis._offset)}}},{"../../lib":778}],840:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib"),a=t("./axis_ids");e.exports=function(t){return function(e,r){var o=e[t];if(Array.isArray(o))for(var s=n.subplotsRegistry.cartesian,l=s.idRegex,c=r._subplots,u=c.xaxis,f=c.yaxis,h=c.cartesian,p=r._has("cartesian")||r._has("gl2d"),d=0;d<o.length;d++){var g=o[d];if(i.isPlainObject(g)){var m=a.cleanId(g.xref,"x",!1),v=a.cleanId(g.yref,"y",!1),y=l.x.test(m),x=l.y.test(v);if(y||x){p||i.pushUnique(r._basePlotModules,s);var b=!1;y&&-1===u.indexOf(m)&&(u.push(m),b=!0),x&&-1===f.indexOf(v)&&(f.push(v),b=!0),b&&y&&x&&h.push(m+v)}}}}}},{"../../lib":778,"../../registry":911,"./axis_ids":831}],841:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../registry"),a=t("../../lib"),o=t("../plots"),s=t("../../components/drawing"),l=t("../get_data").getModuleCalcData,c=t("./axis_ids"),u=t("./constants"),f=t("../../constants/xmlns_namespaces"),h=a.ensureSingle;function p(t,e,r){return a.ensureSingle(t,e,r,(function(t){t.datum(r)}))}function d(t,e,r,a,o){for(var c,f,h,p=u.traceLayerClasses,d=t._fullLayout,g=d._modules,m=[],v=[],y=0;y<g.length;y++){var x=(c=g[y]).name,b=i.modules[x].categories;if(b.svg){var _=c.layerName||x+"layer",w=c.plot;h=(f=l(r,w))[0],r=f[1],h.length&&m.push({i:p.indexOf(_),className:_,plotMethod:w,cdModule:h}),b.zoomScale&&v.push("."+_)}}m.sort((function(t,e){return t.i-e.i}));var T=e.plot.selectAll("g.mlayer").data(m,(function(t){return t.className}));if(T.enter().append("g").attr("class",(function(t){return t.className})).classed("mlayer",!0).classed("rangeplot",e.isRangePlot),T.exit().remove(),T.order(),T.each((function(r){var i=n.select(this),l=r.className;r.plotMethod(t,e,r.cdModule,i,a,o),-1===u.clipOnAxisFalseQuery.indexOf("."+l)&&s.setClipUrl(i,e.layerClipId,t)})),d._has("scattergl")&&(c=i.getModule("scattergl"),h=l(r,c)[0],c.plot(t,e,h)),!t._context.staticPlot&&(e._hasClipOnAxisFalse&&(e.clipOnAxisFalseTraces=e.plot.selectAll(u.clipOnAxisFalseQuery.join(",")).selectAll(".trace")),v.length)){var k=e.plot.selectAll(v.join(",")).selectAll(".trace");e.zoomScalePts=k.selectAll("path.point"),e.zoomScaleTxt=k.selectAll(".textpoint")}}function g(t,e){var r=e.plotgroup,n=e.id,i=u.layerValue2layerClass[e.xaxis.layer],a=u.layerValue2layerClass[e.yaxis.layer],o=t._fullLayout._hasOnlyLargeSploms;if(e.mainplot){var s=e.mainplotinfo,l=s.plotgroup,f=n+"-x",d=n+"-y";e.gridlayer=s.gridlayer,e.zerolinelayer=s.zerolinelayer,h(s.overlinesBelow,"path",f),h(s.overlinesBelow,"path",d),h(s.overaxesBelow,"g",f),h(s.overaxesBelow,"g",d),e.plot=h(s.overplot,"g",n),h(s.overlinesAbove,"path",f),h(s.overlinesAbove,"path",d),h(s.overaxesAbove,"g",f),h(s.overaxesAbove,"g",d),e.xlines=l.select(".overlines-"+i).select("."+f),e.ylines=l.select(".overlines-"+a).select("."+d),e.xaxislayer=l.select(".overaxes-"+i).select("."+f),e.yaxislayer=l.select(".overaxes-"+a).select("."+d)}else if(o)e.xlines=h(r,"path","xlines-above"),e.ylines=h(r,"path","ylines-above"),e.xaxislayer=h(r,"g","xaxislayer-above"),e.yaxislayer=h(r,"g","yaxislayer-above");else{var g=h(r,"g","layer-subplot");e.shapelayer=h(g,"g","shapelayer"),e.imagelayer=h(g,"g","imagelayer"),e.gridlayer=h(r,"g","gridlayer"),e.zerolinelayer=h(r,"g","zerolinelayer"),h(r,"path","xlines-below"),h(r,"path","ylines-below"),e.overlinesBelow=h(r,"g","overlines-below"),h(r,"g","xaxislayer-below"),h(r,"g","yaxislayer-below"),e.overaxesBelow=h(r,"g","overaxes-below"),e.plot=h(r,"g","plot"),e.overplot=h(r,"g","overplot"),e.xlines=h(r,"path","xlines-above"),e.ylines=h(r,"path","ylines-above"),e.overlinesAbove=h(r,"g","overlines-above"),h(r,"g","xaxislayer-above"),h(r,"g","yaxislayer-above"),e.overaxesAbove=h(r,"g","overaxes-above"),e.xlines=r.select(".xlines-"+i),e.ylines=r.select(".ylines-"+a),e.xaxislayer=r.select(".xaxislayer-"+i),e.yaxislayer=r.select(".yaxislayer-"+a)}o||(p(e.gridlayer,"g",e.xaxis._id),p(e.gridlayer,"g",e.yaxis._id),e.gridlayer.selectAll("g").map((function(t){return t[0]})).sort(c.idSort)),e.xlines.style("fill","none").classed("crisp",!0),e.ylines.style("fill","none").classed("crisp",!0)}function m(t,e){if(t){var r={};for(var i in t.each((function(t){var i=t[0];n.select(this).remove(),v(i,e),r[i]=!0})),e._plots)for(var a=e._plots[i].overlays||[],o=0;o<a.length;o++){var s=a[o];r[s.id]&&s.plot.selectAll(".trace").remove()}}}function v(t,e){e._draggers.selectAll("g."+t).remove(),e._defs.select("#clip"+e._uid+t+"plot").remove()}r.name="cartesian",r.attr=["xaxis","yaxis"],r.idRoot=["x","y"],r.idRegex=u.idRegex,r.attrRegex=u.attrRegex,r.attributes=t("./attributes"),r.layoutAttributes=t("./layout_attributes"),r.supplyLayoutDefaults=t("./layout_defaults"),r.transitionAxes=t("./transition_axes"),r.finalizeSubplots=function(t,e){var r,n,i,o=e._subplots,s=o.xaxis,l=o.yaxis,f=o.cartesian,h=f.concat(o.gl2d||[]),p={},d={};for(r=0;r<h.length;r++){var g=h[r].split("y");p[g[0]]=1,d["y"+g[1]]=1}for(r=0;r<s.length;r++)p[n=s[r]]||(i=(t[c.id2name(n)]||{}).anchor,u.idRegex.y.test(i)||(i="y"),f.push(n+i),h.push(n+i),d[i]||(d[i]=1,a.pushUnique(l,i)));for(r=0;r<l.length;r++)d[i=l[r]]||(n=(t[c.id2name(i)]||{}).anchor,u.idRegex.x.test(n)||(n="x"),f.push(n+i),h.push(n+i),p[n]||(p[n]=1,a.pushUnique(s,n)));if(!h.length){for(var m in n="",i="",t){if(u.attrRegex.test(m))"x"===m.charAt(0)?(!n||+m.substr(5)<+n.substr(5))&&(n=m):(!i||+m.substr(5)<+i.substr(5))&&(i=m)}n=n?c.name2id(n):"x",i=i?c.name2id(i):"y",s.push(n),l.push(i),f.push(n+i)}},r.plot=function(t,e,r,n){var i,a=t._fullLayout,o=a._subplots.cartesian,s=t.calcdata;if(!Array.isArray(e))for(e=[],i=0;i<s.length;i++)e.push(i);for(i=0;i<o.length;i++){for(var l,c=o[i],u=a._plots[c],f=[],h=0;h<s.length;h++){var p=s[h],g=p[0].trace;g.xaxis+g.yaxis===c&&((-1!==e.indexOf(g.index)||g.carpet)&&(l&&l[0].trace.xaxis+l[0].trace.yaxis===c&&-1!==["tonextx","tonexty","tonext"].indexOf(g.fill)&&-1===f.indexOf(l)&&f.push(l),f.push(p)),l=p)}d(t,u,f,r,n)}},r.clean=function(t,e,r,n){var i,a,o,s=n._plots||{},l=e._plots||{},u=n._subplots||{};if(n._hasOnlyLargeSploms&&!e._hasOnlyLargeSploms)for(o in s)(i=s[o]).plotgroup&&i.plotgroup.remove();var f=n._has&&n._has("gl"),h=e._has&&e._has("gl");if(f&&!h)for(o in s)(i=s[o])._scene&&i._scene.destroy();if(u.xaxis&&u.yaxis){var p=c.listIds({_fullLayout:n});for(a=0;a<p.length;a++){var d=p[a];e[c.id2name(d)]||n._infolayer.selectAll(".g-"+d+"title").remove()}}var g=n._has&&n._has("cartesian"),y=e._has&&e._has("cartesian");if(g&&!y)m(n._cartesianlayer.selectAll(".subplot"),n),n._defs.selectAll(".axesclip").remove(),delete n._axisConstraintGroups,delete n._axisMatchGroups;else if(u.cartesian)for(a=0;a<u.cartesian.length;a++){var x=u.cartesian[a];if(!l[x]){var b="."+x+",."+x+"-x,."+x+"-y";n._cartesianlayer.selectAll(b).remove(),v(x,n)}}},r.drawFramework=function(t){var e=t._fullLayout,r=function(t){var e,r,n,i,a,o,s=t._fullLayout,l=s._subplots.cartesian,c=l.length,u=[],f=[];for(e=0;e<c;e++){n=l[e],i=s._plots[n],a=i.xaxis,o=i.yaxis;var h=a._mainAxis,p=o._mainAxis,d=h._id+p._id,g=s._plots[d];i.overlays=[],d!==n&&g?(i.mainplot=d,i.mainplotinfo=g,f.push(n)):(i.mainplot=void 0,i.mainplotinfo=void 0,u.push(n))}for(e=0;e<f.length;e++)n=f[e],(i=s._plots[n]).mainplotinfo.overlays.push(i);var m=u.concat(f),v=new Array(c);for(e=0;e<c;e++){n=m[e],i=s._plots[n],a=i.xaxis,o=i.yaxis;var y=[n,a.layer,o.layer,a.overlaying||"",o.overlaying||""];for(r=0;r<i.overlays.length;r++)y.push(i.overlays[r].id);v[e]=y}return v}(t),i=e._cartesianlayer.selectAll(".subplot").data(r,String);i.enter().append("g").attr("class",(function(t){return"subplot "+t[0]})),i.order(),i.exit().call(m,e),i.each((function(r){var i=r[0],a=e._plots[i];a.plotgroup=n.select(this),g(t,a),a.draglayer=h(e._draggers,"g",i)}))},r.rangePlot=function(t,e,r){g(t,e),d(t,e,r),o.style(t)},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(".svg-container");r.filter((function(t,e){return e===r.size()-1})).selectAll(".gl-canvas-context, .gl-canvas-focus").each((function(){var t=this.toDataURL("image/png");e.append("svg:image").attr({xmlns:f.svg,"xlink:href":t,preserveAspectRatio:"none",x:0,y:0,width:this.width,height:this.height})}))},r.updateFx=t("./graph_interact").updateFx},{"../../components/drawing":665,"../../constants/xmlns_namespaces":754,"../../lib":778,"../../registry":911,"../get_data":865,"../plots":891,"./attributes":826,"./axis_ids":831,"./constants":834,"./graph_interact":837,"./layout_attributes":842,"./layout_defaults":843,"./transition_axes":852,d3:169}],842:[function(t,e,r){"use strict";var n=t("../font_attributes"),i=t("../../components/color/attributes"),a=t("../../components/drawing/attributes").dash,o=t("../../lib/extend").extendFlat,s=t("../../plot_api/plot_template").templatedArray,l=(t("../../constants/docs").FORMAT_LINK,t("../../constants/docs").DATE_FORMAT_LINK,t("../../constants/numerical").ONEDAY),c=t("./constants"),u=c.HOUR_PATTERN,f=c.WEEKDAY_PATTERN;e.exports={visible:{valType:"boolean",editType:"plot"},color:{valType:"color",dflt:i.defaultLine,editType:"ticks"},title:{text:{valType:"string",editType:"ticks"},font:n({editType:"ticks"}),standoff:{valType:"number",min:0,editType:"ticks"},editType:"ticks"},type:{valType:"enumerated",values:["-","linear","log","date","category","multicategory"],dflt:"-",editType:"calc",_noTemplating:!0},autotypenumbers:{valType:"enumerated",values:["convert types","strict"],dflt:"convert types",editType:"calc"},autorange:{valType:"enumerated",values:[!0,!1,"reversed"],dflt:!0,editType:"axrange",impliedEdits:{"range[0]":void 0,"range[1]":void 0}},rangemode:{valType:"enumerated",values:["normal","tozero","nonnegative"],dflt:"normal",editType:"plot"},range:{valType:"info_array",items:[{valType:"any",editType:"axrange",impliedEdits:{"^autorange":!1},anim:!0},{valType:"any",editType:"axrange",impliedEdits:{"^autorange":!1},anim:!0}],editType:"axrange",impliedEdits:{autorange:!1},anim:!0},fixedrange:{valType:"boolean",dflt:!1,editType:"calc"},scaleanchor:{valType:"enumerated",values:[c.idRegex.x.toString(),c.idRegex.y.toString()],editType:"plot"},scaleratio:{valType:"number",min:0,dflt:1,editType:"plot"},constrain:{valType:"enumerated",values:["range","domain"],editType:"plot"},constraintoward:{valType:"enumerated",values:["left","center","right","top","middle","bottom"],editType:"plot"},matches:{valType:"enumerated",values:[c.idRegex.x.toString(),c.idRegex.y.toString()],editType:"calc"},rangebreaks:s("rangebreak",{enabled:{valType:"boolean",dflt:!0,editType:"calc"},bounds:{valType:"info_array",items:[{valType:"any",editType:"calc"},{valType:"any",editType:"calc"}],editType:"calc"},pattern:{valType:"enumerated",values:[f,u,""],editType:"calc"},values:{valType:"info_array",freeLength:!0,editType:"calc",items:{valType:"any",editType:"calc"}},dvalue:{valType:"number",editType:"calc",min:0,dflt:l},editType:"calc"}),tickmode:{valType:"enumerated",values:["auto","linear","array"],editType:"ticks",impliedEdits:{tick0:void 0,dtick:void 0}},nticks:{valType:"integer",min:0,dflt:0,editType:"ticks"},tick0:{valType:"any",editType:"ticks",impliedEdits:{tickmode:"linear"}},dtick:{valType:"any",editType:"ticks",impliedEdits:{tickmode:"linear"}},tickvals:{valType:"data_array",editType:"ticks"},ticktext:{valType:"data_array",editType:"ticks"},ticks:{valType:"enumerated",values:["outside","inside",""],editType:"ticks"},tickson:{valType:"enumerated",values:["labels","boundaries"],dflt:"labels",editType:"ticks"},ticklabelmode:{valType:"enumerated",values:["instant","period"],dflt:"instant",editType:"ticks"},ticklabelposition:{valType:"enumerated",values:["outside","inside","outside top","inside top","outside left","inside left","outside right","inside right","outside bottom","inside bottom"],dflt:"outside",editType:"calc"},mirror:{valType:"enumerated",values:[!0,"ticks",!1,"all","allticks"],dflt:!1,editType:"ticks+layoutstyle"},ticklen:{valType:"number",min:0,dflt:5,editType:"ticks"},tickwidth:{valType:"number",min:0,dflt:1,editType:"ticks"},tickcolor:{valType:"color",dflt:i.defaultLine,editType:"ticks"},showticklabels:{valType:"boolean",dflt:!0,editType:"ticks"},automargin:{valType:"boolean",dflt:!1,editType:"ticks"},showspikes:{valType:"boolean",dflt:!1,editType:"modebar"},spikecolor:{valType:"color",dflt:null,editType:"none"},spikethickness:{valType:"number",dflt:3,editType:"none"},spikedash:o({},a,{dflt:"dash",editType:"none"}),spikemode:{valType:"flaglist",flags:["toaxis","across","marker"],dflt:"toaxis",editType:"none"},spikesnap:{valType:"enumerated",values:["data","cursor","hovered data"],dflt:"data",editType:"none"},tickfont:n({editType:"ticks"}),tickangle:{valType:"angle",dflt:"auto",editType:"ticks"},tickprefix:{valType:"string",dflt:"",editType:"ticks"},showtickprefix:{valType:"enumerated",values:["all","first","last","none"],dflt:"all",editType:"ticks"},ticksuffix:{valType:"string",dflt:"",editType:"ticks"},showticksuffix:{valType:"enumerated",values:["all","first","last","none"],dflt:"all",editType:"ticks"},showexponent:{valType:"enumerated",values:["all","first","last","none"],dflt:"all",editType:"ticks"},exponentformat:{valType:"enumerated",values:["none","e","E","power","SI","B"],dflt:"B",editType:"ticks"},minexponent:{valType:"number",dflt:3,min:0,editType:"ticks"},separatethousands:{valType:"boolean",dflt:!1,editType:"ticks"},tickformat:{valType:"string",dflt:"",editType:"ticks"},tickformatstops:s("tickformatstop",{enabled:{valType:"boolean",dflt:!0,editType:"ticks"},dtickrange:{valType:"info_array",items:[{valType:"any",editType:"ticks"},{valType:"any",editType:"ticks"}],editType:"ticks"},value:{valType:"string",dflt:"",editType:"ticks"},editType:"ticks"}),hoverformat:{valType:"string",dflt:"",editType:"none"},showline:{valType:"boolean",dflt:!1,editType:"ticks+layoutstyle"},linecolor:{valType:"color",dflt:i.defaultLine,editType:"layoutstyle"},linewidth:{valType:"number",min:0,dflt:1,editType:"ticks+layoutstyle"},showgrid:{valType:"boolean",editType:"ticks"},gridcolor:{valType:"color",dflt:i.lightLine,editType:"ticks"},gridwidth:{valType:"number",min:0,dflt:1,editType:"ticks"},zeroline:{valType:"boolean",editType:"ticks"},zerolinecolor:{valType:"color",dflt:i.defaultLine,editType:"ticks"},zerolinewidth:{valType:"number",dflt:1,editType:"ticks"},showdividers:{valType:"boolean",dflt:!0,editType:"ticks"},dividercolor:{valType:"color",dflt:i.defaultLine,editType:"ticks"},dividerwidth:{valType:"number",dflt:1,editType:"ticks"},anchor:{valType:"enumerated",values:["free",c.idRegex.x.toString(),c.idRegex.y.toString()],editType:"plot"},side:{valType:"enumerated",values:["top","bottom","left","right"],editType:"plot"},overlaying:{valType:"enumerated",values:["free",c.idRegex.x.toString(),c.idRegex.y.toString()],editType:"plot"},layer:{valType:"enumerated",values:["above traces","below traces"],dflt:"above traces",editType:"plot"},domain:{valType:"info_array",items:[{valType:"number",min:0,max:1,editType:"plot"},{valType:"number",min:0,max:1,editType:"plot"}],dflt:[0,1],editType:"plot"},position:{valType:"number",min:0,max:1,dflt:0,editType:"plot"},categoryorder:{valType:"enumerated",values:["trace","category ascending","category descending","array","total ascending","total descending","min ascending","min descending","max ascending","max descending","sum ascending","sum descending","mean ascending","mean descending","median ascending","median descending"],dflt:"trace",editType:"calc"},categoryarray:{valType:"data_array",editType:"calc"},uirevision:{valType:"any",editType:"none"},editType:"calc",_deprecated:{autotick:{valType:"boolean",editType:"ticks"},title:{valType:"string",editType:"ticks"},titlefont:n({editType:"ticks"})}}},{"../../components/color/attributes":642,"../../components/drawing/attributes":664,"../../constants/docs":748,"../../constants/numerical":753,"../../lib/extend":768,"../../plot_api/plot_template":817,"../font_attributes":856,"./constants":834}],843:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/color"),a=t("../../components/fx/helpers").isUnifiedHover,o=t("../../components/fx/hovermode_defaults"),s=t("../../plot_api/plot_template"),l=t("../layout_attributes"),c=t("./layout_attributes"),u=t("./type_defaults"),f=t("./axis_defaults"),h=t("./constraints"),p=t("./position_defaults"),d=t("./axis_ids"),g=d.id2name,m=d.name2id,v=t("./constants").AX_ID_PATTERN,y=t("../../registry"),x=y.traceIs,b=y.getComponentMethod;function _(t,e,r){Array.isArray(t[e])?t[e].push(r):t[e]=[r]}e.exports=function(t,e,r){var y,w,T=e.autotypenumbers,k={},M={},A={},S={},E={},C={},L={},I={},P={},z={};for(y=0;y<r.length;y++){var O=r[y];if(x(O,"cartesian")||x(O,"gl2d")){var D,R;if(O.xaxis)D=g(O.xaxis),_(k,D,O);else if(O.xaxes)for(w=0;w<O.xaxes.length;w++)_(k,g(O.xaxes[w]),O);if(O.yaxis)R=g(O.yaxis),_(k,R,O);else if(O.yaxes)for(w=0;w<O.yaxes.length;w++)_(k,g(O.yaxes[w]),O);if("funnel"===O.type?"h"===O.orientation?(D&&(M[D]=!0),R&&(L[R]=!0)):R&&(A[R]=!0):"image"===O.type?(R&&(I[R]=!0),D&&(I[D]=!0)):(R&&(E[R]=!0,C[R]=!0),x(O,"carpet")&&("carpet"!==O.type||O._cheater)||D&&(S[D]=!0)),"carpet"===O.type&&O._cheater&&D&&(M[D]=!0),x(O,"2dMap")&&(P[D]=!0,P[R]=!0),x(O,"oriented"))z["h"===O.orientation?R:D]=!0}}var F=e._subplots,B=F.xaxis,N=F.yaxis,j=n.simpleMap(B,g),U=n.simpleMap(N,g),V=j.concat(U),q=i.background;B.length&&N.length&&(q=n.coerce(t,e,l,"plot_bgcolor"));var H,G,Y,W,X,Z=i.combine(q,e.paper_bgcolor);function J(){var t=k[H]||[];X._traceIndices=t.map((function(t){return t._expandedIndex})),X._annIndices=[],X._shapeIndices=[],X._imgIndices=[],X._subplotsWith=[],X._counterAxes=[],X._name=X._attr=H,X._id=G}function K(t,e){return n.coerce(W,X,c,t,e)}function Q(t,e){return n.coerce2(W,X,c,t,e)}function $(t){return"x"===t?N:B}function tt(e,r){for(var n="x"===e?j:U,i=[],a=0;a<n.length;a++){var o=n[a];o===r||(t[o]||{}).overlaying||i.push(m(o))}return i}var et={x:$("x"),y:$("y")},rt=et.x.concat(et.y),nt={},it=[];function at(){var t=W.matches;v.test(t)&&-1===rt.indexOf(t)&&(nt[t]=W.type,it=Object.keys(nt))}var ot=o(t,e,r),st=a(ot);for(y=0;y<V.length;y++){H=V[y],G=m(H),Y=H.charAt(0),n.isPlainObject(t[H])||(t[H]={}),W=t[H],X=s.newContainer(e,H,Y+"axis"),J();var lt="x"===Y&&!S[H]&&M[H]||"y"===Y&&!E[H]&&A[H],ct="y"===Y&&(!C[H]&&L[H]||I[H]),ut={letter:Y,font:e.font,outerTicks:P[H],showGrid:!z[H],data:k[H]||[],bgColor:Z,calendar:e.calendar,automargin:!0,visibleDflt:lt,reverseDflt:ct,autotypenumbersDflt:T,splomStash:((e._splomAxes||{})[Y]||{})[G]};K("uirevision",e.uirevision),u(W,X,K,ut),f(W,X,K,ut,e);var ft=st&&Y===ot.charAt(0),ht=Q("spikecolor",st?X.color:void 0),pt=Q("spikethickness",st?1.5:void 0),dt=Q("spikedash",st?"dot":void 0),gt=Q("spikemode",st?"across":void 0),mt=Q("spikesnap",st?"hovered data":void 0);K("showspikes",!!(ft||ht||pt||dt||gt||mt))||(delete X.spikecolor,delete X.spikethickness,delete X.spikedash,delete X.spikemode,delete X.spikesnap),p(W,X,K,{letter:Y,counterAxes:et[Y],overlayableAxes:tt(Y,H),grid:e.grid}),K("title.standoff"),at(),X._input=W}for(y=0;y<it.length;){G=it[y++],Y=(H=g(G)).charAt(0),n.isPlainObject(t[H])||(t[H]={}),W=t[H],X=s.newContainer(e,H,Y+"axis"),J();var vt={letter:Y,font:e.font,outerTicks:P[H],showGrid:!z[H],data:[],bgColor:Z,calendar:e.calendar,automargin:!0,visibleDflt:!1,reverseDflt:!1,autotypenumbersDflt:T,splomStash:((e._splomAxes||{})[Y]||{})[G]};K("uirevision",e.uirevision),X.type=nt[G]||"linear",f(W,X,K,vt,e),p(W,X,K,{letter:Y,counterAxes:et[Y],overlayableAxes:tt(Y,H),grid:e.grid}),K("fixedrange"),at(),X._input=W}var yt=b("rangeslider","handleDefaults"),xt=b("rangeselector","handleDefaults");for(y=0;y<j.length;y++)H=j[y],W=t[H],X=e[H],yt(t,e,H),"date"===X.type&&xt(W,X,e,U,X.calendar),K("fixedrange");for(y=0;y<U.length;y++){H=U[y],W=t[H],X=e[H];var bt=e[g(X.anchor)];K("fixedrange",b("rangeslider","isVisible")(bt))}h.handleDefaults(t,e,{axIds:rt.concat(it).sort(d.idSort),axHasImage:I})}},{"../../components/color":643,"../../components/fx/helpers":679,"../../components/fx/hovermode_defaults":682,"../../lib":778,"../../plot_api/plot_template":817,"../../registry":911,"../layout_attributes":882,"./axis_defaults":830,"./axis_ids":831,"./constants":834,"./constraints":835,"./layout_attributes":842,"./position_defaults":845,"./type_defaults":853}],844:[function(t,e,r){"use strict";var n=t("tinycolor2").mix,i=t("../../components/color/attributes").lightFraction,a=t("../../lib");e.exports=function(t,e,r,o){var s=(o=o||{}).dfltColor;function l(r,n){return a.coerce2(t,e,o.attributes,r,n)}var c=l("linecolor",s),u=l("linewidth");r("showline",o.showLine||!!c||!!u)||(delete e.linecolor,delete e.linewidth);var f=l("gridcolor",n(s,o.bgColor,o.blend||i).toRgbString()),h=l("gridwidth");if(r("showgrid",o.showGrid||!!f||!!h)||(delete e.gridcolor,delete e.gridwidth),!o.noZeroLine){var p=l("zerolinecolor",s),d=l("zerolinewidth");r("zeroline",o.showGrid||!!p||!!d)||(delete e.zerolinecolor,delete e.zerolinewidth)}}},{"../../components/color/attributes":642,"../../lib":778,tinycolor2:576}],845:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib");e.exports=function(t,e,r,a){var o,s,l,c,u=a.counterAxes||[],f=a.overlayableAxes||[],h=a.letter,p=a.grid;p&&(s=p._domains[h][p._axisMap[e._id]],o=p._anchors[e._id],s&&(l=p[h+"side"].split(" ")[0],c=p.domain[h]["right"===l||"top"===l?1:0])),s=s||[0,1],o=o||(n(t.position)?"free":u[0]||"free"),l=l||("x"===h?"bottom":"left"),c=c||0,"free"===i.coerce(t,e,{anchor:{valType:"enumerated",values:["free"].concat(u),dflt:o}},"anchor")&&r("position",c),i.coerce(t,e,{side:{valType:"enumerated",values:"x"===h?["bottom","top"]:["left","right"],dflt:l}},"side");var d=!1;if(f.length&&(d=i.coerce(t,e,{overlaying:{valType:"enumerated",values:[!1].concat(f),dflt:!1}},"overlaying")),!d){var g=r("domain",s);g[0]>g[1]-1/4096&&(e.domain=s),i.noneOrAll(t.domain,e.domain,s)}return r("layer"),e}},{"../../lib":778,"fast-isnumeric":241}],846:[function(t,e,r){"use strict";var n=t("../../constants/alignment").FROM_BL;e.exports=function(t,e,r){void 0===r&&(r=n[t.constraintoward||"center"]);var i=[t.r2l(t.range[0]),t.r2l(t.range[1])],a=i[0]+(i[1]-i[0])*r;t.range=t._input.range=[t.l2r(a+(i[0]-a)*e),t.l2r(a+(i[1]-a)*e)],t.setScale()}},{"../../constants/alignment":745}],847:[function(t,e,r){"use strict";var n=t("polybooljs"),i=t("../../registry"),a=t("../../components/drawing").dashStyle,o=t("../../components/color"),s=t("../../components/fx"),l=t("../../components/fx/helpers").makeEventData,c=t("../../components/dragelement/helpers"),u=c.freeMode,f=c.rectMode,h=c.drawMode,p=c.openMode,d=c.selectMode,g=t("../../components/shapes/draw_newshape/display_outlines"),m=t("../../components/shapes/draw_newshape/helpers").handleEllipse,v=t("../../components/shapes/draw_newshape/newshapes"),y=t("../../lib"),x=t("../../lib/polygon"),b=t("../../lib/throttle"),_=t("./axis_ids").getFromId,w=t("../../lib/clear_gl_canvases"),T=t("../../plot_api/subroutines").redrawReglTraces,k=t("./constants"),M=k.MINSELECT,A=x.filter,S=x.tester,E=t("./handle_outline").clearSelect,C=t("./helpers"),L=C.p2r,I=C.axValue,P=C.getTransform;function z(t,e,r,n,i,a,o){var s,l,c,u,f,h,d,m,v,y=e._hoverdata,x=e._fullLayout.clickmode.indexOf("event")>-1,b=[];if(function(t){return t&&Array.isArray(t)&&!0!==t[0].hoverOnBox}(y)){F(t,e,a);var _=function(t,e){var r,n,i=t[0],a=-1,o=[];for(n=0;n0?function(t,e){var r,n,i,a=[];for(i=0;i0&&a.push(r);if(1===a.length&&a[0]===e.searchInfo&&(n=e.searchInfo.cd[0].trace).selectedpoints.length===e.pointNumbers.length){for(i=0;i1)return!1;if((i+=r.selectedpoints.length)>1)return!1}return 1===i}(s)&&(h=j(_))){for(o&&o.remove(),v=0;v=0&&n._fullLayout._deactivateShape(n),h(e)){var a=n._fullLayout._zoomlayer.selectAll(".select-outline-"+r.id);if(a&&n._fullLayout._drawing){var o=v(a,t);o&&i.call("_guiRelayout",n,{shapes:o}),n._fullLayout._drawing=!1}}r.selection={},r.selection.selectionDefs=t.selectionDefs=[],r.selection.mergedPolygons=t.mergedPolygons=[]}function N(t,e,r,n){var i,a,o,s=[],l=e.map((function(t){return t._id})),c=r.map((function(t){return t._id}));for(o=0;o0?n[0]:r;return!!e.selectedpoints&&e.selectedpoints.indexOf(i)>-1}function U(t,e,r){var n,a,o,s;for(n=0;n=0)C._fullLayout._deactivateShape(C);else if(!_){var r=O.clickmode;b.done(gt).then((function(){if(b.clear(gt),2===t){for(ft.remove(),$=0;$-1&&z(e,C,i.xaxes,i.yaxes,i.subplot,i,ft),"event"===r&&C.emit("plotly_selected",void 0);s.click(C,e)})).catch(y.error)}},i.doneFn=function(){dt.remove(),b.done(gt).then((function(){b.clear(gt),i.gd.emit("plotly_selected",et),Q&&i.selectionDefs&&(Q.subtract=ut,i.selectionDefs.push(Q),i.mergedPolygons.length=0,[].push.apply(i.mergedPolygons,K)),i.doneFnCompleted&&i.doneFnCompleted(mt)})).catch(y.error),_&&B(i)}},clearSelect:E,clearSelectionsCache:B,selectOnClick:z}},{"../../components/color":643,"../../components/dragelement/helpers":661,"../../components/drawing":665,"../../components/fx":683,"../../components/fx/helpers":679,"../../components/shapes/draw_newshape/display_outlines":728,"../../components/shapes/draw_newshape/helpers":729,"../../components/shapes/draw_newshape/newshapes":730,"../../lib":778,"../../lib/clear_gl_canvases":762,"../../lib/polygon":790,"../../lib/throttle":804,"../../plot_api/subroutines":818,"../../registry":911,"./axis_ids":831,"./constants":834,"./handle_outline":838,"./helpers":839,polybooljs:517}],848:[function(t,e,r){"use strict";var n=t("d3"),i=t("d3-time-format").utcFormat,a=t("fast-isnumeric"),o=t("../../lib"),s=o.cleanNumber,l=o.ms2DateTime,c=o.dateTime2ms,u=o.ensureNumber,f=o.isArrayOrTypedArray,h=t("../../constants/numerical"),p=h.FP_SAFE,d=h.BADNUM,g=h.LOG_CLIP,m=h.ONEWEEK,v=h.ONEDAY,y=h.ONEHOUR,x=h.ONEMIN,b=h.ONESEC,_=t("./axis_ids"),w=t("./constants"),T=w.HOUR_PATTERN,k=w.WEEKDAY_PATTERN;function M(t){return Math.pow(10,t)}function A(t){return null!=t}e.exports=function(t,e){e=e||{};var r=t._id||"x",h=r.charAt(0);function S(e,r){if(e>0)return Math.log(e)/Math.LN10;if(e<=0&&r&&t.range&&2===t.range.length){var n=t.range[0],i=t.range[1];return.5*(n+i-2*g*Math.abs(n-i))}return d}function E(e,r,n,i){if((i||{}).msUTC&&a(e))return+e;var s=c(e,n||t.calendar);if(s===d){if(!a(e))return d;e=+e;var l=Math.floor(10*o.mod(e+.05,1)),u=Math.round(e-l/10);s=c(new Date(u))+l/10}return s}function C(e,r,n){return l(e,r,n||t.calendar)}function L(e){return t._categories[Math.round(e)]}function I(e){if(A(e)){if(void 0===t._categoriesMap&&(t._categoriesMap={}),void 0!==t._categoriesMap[e])return t._categoriesMap[e];t._categories.push("number"==typeof e?String(e):e);var r=t._categories.length-1;return t._categoriesMap[e]=r,r}return d}function P(e){if(t._categoriesMap)return t._categoriesMap[e]}function z(t){var e=P(t);return void 0!==e?e:a(t)?+t:void 0}function O(t){return a(t)?+t:P(t)}function D(t,e,r){return n.round(r+e*t,2)}function R(t,e,r){return(t-r)/e}var F=function(e){return a(e)?D(e,t._m,t._b):d},B=function(e){return R(e,t._m,t._b)};if(t.rangebreaks){var N="y"===h;F=function(e){if(!a(e))return d;var r=t._rangebreaks.length;if(!r)return D(e,t._m,t._b);var n=N;t.range[0]>t.range[1]&&(n=!n);for(var i=n?-1:1,o=i*e,s=0,l=0;lu)){s=o<(c+u)/2?l:l+1;break}s=l+1}var f=t._B[s]||0;return isFinite(f)?D(e,t._m2,f):0},B=function(e){var r=t._rangebreaks.length;if(!r)return R(e,t._m,t._b);for(var n=0,i=0;it._rangebreaks[i].pmax&&(n=i+1);return R(e,t._m2,t._B[n])}}t.c2l="log"===t.type?S:u,t.l2c="log"===t.type?M:u,t.l2p=F,t.p2l=B,t.c2p="log"===t.type?function(t,e){return F(S(t,e))}:F,t.p2c="log"===t.type?function(t){return M(B(t))}:B,-1!==["linear","-"].indexOf(t.type)?(t.d2r=t.r2d=t.d2c=t.r2c=t.d2l=t.r2l=s,t.c2d=t.c2r=t.l2d=t.l2r=u,t.d2p=t.r2p=function(e){return t.l2p(s(e))},t.p2d=t.p2r=B,t.cleanPos=u):"log"===t.type?(t.d2r=t.d2l=function(t,e){return S(s(t),e)},t.r2d=t.r2c=function(t){return M(s(t))},t.d2c=t.r2l=s,t.c2d=t.l2r=u,t.c2r=S,t.l2d=M,t.d2p=function(e,r){return t.l2p(t.d2r(e,r))},t.p2d=function(t){return M(B(t))},t.r2p=function(e){return t.l2p(s(e))},t.p2r=B,t.cleanPos=u):"date"===t.type?(t.d2r=t.r2d=o.identity,t.d2c=t.r2c=t.d2l=t.r2l=E,t.c2d=t.c2r=t.l2d=t.l2r=C,t.d2p=t.r2p=function(e,r,n){return t.l2p(E(e,0,n))},t.p2d=t.p2r=function(t,e,r){return C(B(t),e,r)},t.cleanPos=function(e){return o.cleanDate(e,d,t.calendar)}):"category"===t.type?(t.d2c=t.d2l=I,t.r2d=t.c2d=t.l2d=L,t.d2r=t.d2l_noadd=z,t.r2c=function(e){var r=O(e);return void 0!==r?r:t.fraction2r(.5)},t.l2r=t.c2r=u,t.r2l=O,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return L(B(t))},t.r2p=t.d2p,t.p2r=B,t.cleanPos=function(t){return"string"==typeof t&&""!==t?t:u(t)}):"multicategory"===t.type&&(t.r2d=t.c2d=t.l2d=L,t.d2r=t.d2l_noadd=z,t.r2c=function(e){var r=z(e);return void 0!==r?r:t.fraction2r(.5)},t.r2c_just_indices=P,t.l2r=t.c2r=u,t.r2l=z,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return L(B(t))},t.r2p=t.d2p,t.p2r=B,t.cleanPos=function(t){return Array.isArray(t)||"string"==typeof t&&""!==t?t:u(t)},t.setupMultiCategory=function(n){var i,a,s=t._traceIndices,l=t._matchGroup;if(l&&0===t._categories.length)for(var c in l)if(c!==r){var u=e[_.id2name(c)];s=s.concat(u._traceIndices)}var p=[[0,{}],[0,{}]],d=[];for(i=0;ip&&(s[n]=p),s[0]===s[1]){var c=Math.max(1,Math.abs(1e-6*s[0]));s[0]-=c,s[1]+=c}}else o.nestedProperty(t,e).set(i)},t.setScale=function(r){var n=e._size;if(t.overlaying){var i=_.getFromId({_fullLayout:e},t.overlaying);t.domain=i.domain}var a=r&&t._r?"_r":"range",o=t.calendar;t.cleanRange(a);var s,l,c=t.r2l(t[a][0],o),u=t.r2l(t[a][1],o),f="y"===h;if((f?(t._offset=n.t+(1-t.domain[1])*n.h,t._length=n.h*(t.domain[1]-t.domain[0]),t._m=t._length/(c-u),t._b=-t._m*u):(t._offset=n.l+t.domain[0]*n.w,t._length=n.w*(t.domain[1]-t.domain[0]),t._m=t._length/(u-c),t._b=-t._m*c),t._rangebreaks=[],t._lBreaks=0,t._m2=0,t._B=[],t.rangebreaks)&&(t._rangebreaks=t.locateBreaks(Math.min(c,u),Math.max(c,u)),t._rangebreaks.length)){for(s=0;su&&(p=!p),p&&t._rangebreaks.reverse();var d=p?-1:1;for(t._m2=d*t._length/(Math.abs(u-c)-t._lBreaks),t._B.push(-t._m2*(f?u:c)),s=0;si&&(i+=7,ai&&(i+=24,a=n&&a=n&&e=s.min&&(ts.max&&(s.max=n),i=!1)}i&&c.push({min:t,max:n})}};for(n=0;nr.duration?(!function(){for(var r={},n=0;n rect").call(o.setTranslate,0,0).call(o.setScale,1,1),t.plot.call(o.setTranslate,e._offset,r._offset).call(o.setScale,1,1);var n=t.plot.selectAll(".scatterlayer .trace");n.selectAll(".point").call(o.setPointGroupScale,1,1),n.selectAll(".textpoint").call(o.setTextPointsScale,1,1),n.call(o.hideOutsideRangePoints,t)}function m(e,r){var n=e.plotinfo,i=n.xaxis,l=n.yaxis,c=i._length,u=l._length,f=!!e.xr1,h=!!e.yr1,p=[];if(f){var d=a.simpleMap(e.xr0,i.r2l),g=a.simpleMap(e.xr1,i.r2l),m=d[1]-d[0],v=g[1]-g[0];p[0]=(d[0]*(1-r)+r*g[0]-d[0])/(d[1]-d[0])*c,p[2]=c*(1-r+r*v/m),i.range[0]=i.l2r(d[0]*(1-r)+r*g[0]),i.range[1]=i.l2r(d[1]*(1-r)+r*g[1])}else p[0]=0,p[2]=c;if(h){var y=a.simpleMap(e.yr0,l.r2l),x=a.simpleMap(e.yr1,l.r2l),b=y[1]-y[0],_=x[1]-x[0];p[1]=(y[1]*(1-r)+r*x[1]-y[1])/(y[0]-y[1])*u,p[3]=u*(1-r+r*_/b),l.range[0]=i.l2r(y[0]*(1-r)+r*x[0]),l.range[1]=l.l2r(y[1]*(1-r)+r*x[1])}else p[1]=0,p[3]=u;s.drawOne(t,i,{skipTitle:!0}),s.drawOne(t,l,{skipTitle:!0}),s.redrawComponents(t,[i._id,l._id]);var w=f?c/p[2]:1,T=h?u/p[3]:1,k=f?p[0]:0,M=h?p[1]:0,A=f?p[0]/p[2]*c:0,S=h?p[1]/p[3]*u:0,E=i._offset-A,C=l._offset-S;n.clipRect.call(o.setTranslate,k,M).call(o.setScale,1/w,1/T),n.plot.call(o.setTranslate,E,C).call(o.setScale,w,T),o.setPointGroupScale(n.zoomScalePts,1/w,1/T),o.setTextPointsScale(n.zoomScaleTxt,1/w,1/T)}s.redrawComponents(t)}},{"../../components/drawing":665,"../../lib":778,"../../registry":911,"./axes":828,d3:169}],853:[function(t,e,r){"use strict";var n=t("../../registry").traceIs,i=t("./axis_autotype");function a(t){return{v:"x",h:"y"}[t.orientation||"v"]}function o(t,e){var r=a(t),i=n(t,"box-violin"),o=n(t._fullInput||{},"candlestick");return i&&!o&&e===r&&void 0===t[r]&&void 0===t[r+"0"]}e.exports=function(t,e,r,s){r("autotypenumbers",s.autotypenumbersDflt),"-"===r("type",(s.splomStash||{}).type)&&(!function(t,e){if("-"!==t.type)return;var r,s=t._id,l=s.charAt(0);-1!==s.indexOf("scene")&&(s=l);var c=function(t,e,r){for(var n=0;n0&&(i["_"+r+"axes"]||{})[e])return i;if((i[r+"axis"]||r)===e){if(o(i,r))return i;if((i[r]||[]).length||i[r+"0"])return i}}}(e,s,l);if(!c)return;if("histogram"===c.type&&l==={v:"y",h:"x"}[c.orientation||"v"])return void(t.type="linear");var u=l+"calendar",f=c[u],h={noMultiCategory:!n(c,"cartesian")||n(c,"noMultiCategory")};"box"===c.type&&c._hasPreCompStats&&l==={h:"x",v:"y"}[c.orientation||"v"]&&(h.noMultiCategory=!0);if(h.autotypenumbers=t.autotypenumbers,o(c,l)){var p=a(c),d=[];for(r=0;r0?".":"")+a;i.isPlainObject(o)?l(o,e,s,n+1):e(s,a,o)}}))}r.manageCommandObserver=function(t,e,n,o){var s={},l=!0;e&&e._commandObserver&&(s=e._commandObserver),s.cache||(s.cache={}),s.lookupTable={};var c=r.hasSimpleAPICommandBindings(t,n,s.lookupTable);if(e&&e._commandObserver){if(c)return s;if(e._commandObserver.remove)return e._commandObserver.remove(),e._commandObserver=null,s}if(c){a(t,c,s.cache),s.check=function(){if(l){var e=a(t,c,s.cache);return e.changed&&o&&void 0!==s.lookupTable[e.value]&&(s.disable(),Promise.resolve(o({value:e.value,type:c.type,prop:c.prop,traces:c.traces,index:s.lookupTable[e.value]})).then(s.enable,s.enable)),e.changed}};for(var u=["plotly_relayout","plotly_redraw","plotly_restyle","plotly_update","plotly_animatingframe","plotly_afterplot"],f=0;f0&&i<0&&(i+=360);var s=(i-n)/4;return{type:"Polygon",coordinates:[[[n,a],[n,o],[n+s,o],[n+2*s,o],[n+3*s,o],[i,o],[i,a],[i-s,a],[i-2*s,a],[i-3*s,a],[n,a]]]}}e.exports=function(t){return new w(t)},T.plot=function(t,e,r){var n=this,i=e[this.id],a=[],o=!1;for(var s in y.layerNameToAdjective)if("frame"!==s&&i["show"+s]){o=!0;break}for(var l=0;l0&&a._module.calcGeoJSON(i,e)}if(!this.updateProjection(t,e)){this.viewInitial&&this.scope===r.scope||this.saveViewInitial(r),this.scope=r.scope,this.updateBaseLayers(e,r),this.updateDims(e,r),this.updateFx(e,r),u.generalUpdatePerTraceModule(this.graphDiv,this,t,r);var o=this.layers.frontplot.select(".scatterlayer");this.dataPoints.point=o.selectAll(".point"),this.dataPoints.text=o.selectAll("text"),this.dataPaths.line=o.selectAll(".js-line");var s=this.layers.backplot.select(".choroplethlayer");this.dataPaths.choropleth=s.selectAll("path"),this.render()}},T.updateProjection=function(t,e){var r=this.graphDiv,o=e[this.id],s=e._size,l=o.domain,c=o.projection,u=o.lonaxis,f=o.lataxis,p=u._ax,d=f._ax,g=this.projection=function(t){for(var e=t.projection.type,r=n.geo[y.projNames[e]](),i=t._isClipped?y.lonaxisSpan[e]/2:null,a=["center","rotate","parallels","clipExtent"],o=function(t){return t?r:[]},s=0;si*Math.PI/180}return!1},r.getPath=function(){return n.geo.path().projection(r)},r.getBounds=function(t){return r.getPath().bounds(t)},r.fitExtent=function(t,e){var n=t[1][0]-t[0][0],i=t[1][1]-t[0][1],a=r.clipExtent&&r.clipExtent();r.scale(150).translate([0,0]),a&&r.clipExtent(null);var o=r.getBounds(e),s=Math.min(n/(o[1][0]-o[0][0]),i/(o[1][1]-o[0][1])),l=+t[0][0]+(n-s*(o[1][0]+o[0][0]))/2,c=+t[0][1]+(i-s*(o[1][1]+o[0][1]))/2;return a&&r.clipExtent(a),r.scale(150*s).translate([l,c])},r.precision(y.precision),i&&r.clipAngle(i-y.clipPad);return r}(o),m=[[s.l+s.w*l.x[0],s.t+s.h*(1-l.y[1])],[s.l+s.w*l.x[1],s.t+s.h*(1-l.y[0])]],v=o.center||{},x=c.rotation||{},b=u.range||[],_=f.range||[];if(o.fitbounds){p._length=m[1][0]-m[0][0],d._length=m[1][1]-m[0][1],p.range=h(r,p),d.range=h(r,d);var w=(p.range[0]+p.range[1])/2,T=(d.range[0]+d.range[1])/2;if(o._isScoped)v={lon:w,lat:T};else if(o._isClipped){v={lon:w,lat:T},x={lon:w,lat:T,roll:x.roll};var M=c.type,A=y.lonaxisSpan[M]/2||180,S=y.lataxisSpan[M]/2||90;b=[w-A,w+A],_=[T-S,T+S]}else v={lon:w,lat:T},x={lon:w,lat:x.lat,roll:x.roll}}g.center([v.lon-x.lon,v.lat-x.lat]).rotate([-x.lon,-x.lat,x.roll]).parallels(c.parallels);var E=k(b,_);g.fitExtent(m,E);var C=this.bounds=g.getBounds(E),L=this.fitScale=g.scale(),I=g.translate();if(!isFinite(C[0][0])||!isFinite(C[0][1])||!isFinite(C[1][0])||!isFinite(C[1][1])||isNaN(I[0])||isNaN(I[0])){for(var P=["fitbounds","projection.rotation","center","lonaxis.range","lataxis.range"],z="Invalid geo settings, relayout'ing to default view.",O={},D=0;D-1&&m(n.event,a,[r.xaxis],[r.yaxis],r.id,f),l.indexOf("event")>-1&&c.click(a,n.event))}))}function h(t){return r.projection.invert([t[0]+r.xaxis._offset,t[1]+r.yaxis._offset])}},T.makeFramework=function(){var t=this,e=t.graphDiv,r=e._fullLayout,i="clip"+r._uid+t.id;t.clipDef=r._clips.append("clipPath").attr("id",i),t.clipRect=t.clipDef.append("rect"),t.framework=n.select(t.container).append("g").attr("class","geo "+t.id).call(l.setClipUrl,i,e),t.project=function(e){var r=t.projection(e);return r?[r[0]-t.xaxis._offset,r[1]-t.yaxis._offset]:[null,null]},t.xaxis={_id:"x",c2p:function(e){return t.project(e)[0]}},t.yaxis={_id:"y",c2p:function(e){return t.project(e)[1]}},t.mockAxis={type:"linear",showexponent:"all",exponentformat:"B"},f.setConvert(t.mockAxis,r)},T.saveViewInitial=function(t){var e,r=t.center||{},n=t.projection,i=n.rotation||{};this.viewInitial={fitbounds:t.fitbounds,"projection.scale":n.scale},e=t._isScoped?{"center.lon":r.lon,"center.lat":r.lat}:t._isClipped?{"projection.rotation.lon":i.lon,"projection.rotation.lat":i.lat}:{"center.lon":r.lon,"center.lat":r.lat,"projection.rotation.lon":i.lon},a.extendFlat(this.viewInitial,e)},T.render=function(){var t,e=this.projection,r=e.getPath();function n(t){var r=e(t.lonlat);return r?o(r[0],r[1]):null}function i(t){return e.isLonLatOverEdges(t.lonlat)?"none":null}for(t in this.basePaths)this.basePaths[t].attr("d",r);for(t in this.dataPaths)this.dataPaths[t].attr("d",(function(t){return r(t.geojson)}));for(t in this.dataPoints)this.dataPoints[t].attr("display",i).attr("transform",n)}},{"../../components/color":643,"../../components/dragelement":662,"../../components/drawing":665,"../../components/fx":683,"../../lib":778,"../../lib/geo_location_utils":771,"../../lib/topojson_utils":806,"../../registry":911,"../cartesian/autorange":827,"../cartesian/axes":828,"../cartesian/select":847,"../plots":891,"./constants":858,"./projections":863,"./zoom":864,d3:169,"topojson-client":579}],860:[function(t,e,r){"use strict";var n=t("../../plots/get_data").getSubplotCalcData,i=t("../../lib").counterRegex,a=t("./geo"),o="geo",s=i(o),l={};l.geo={valType:"subplotid",dflt:o,editType:"calc"},e.exports={attr:o,name:o,idRoot:o,idRegex:s,attrRegex:s,attributes:l,layoutAttributes:t("./layout_attributes"),supplyLayoutDefaults:t("./layout_defaults"),plot:function(t){for(var e=t._fullLayout,r=t.calcdata,i=e._subplots.geo,s=0;s0&&L<0&&(L+=360);var I,P,z,O=(C+L)/2;if(!p){var D=d?f.projRotate:[O,0,0];I=r("projection.rotation.lon",D[0]),r("projection.rotation.lat",D[1]),r("projection.rotation.roll",D[2]),r("showcoastlines",!d&&y)&&(r("coastlinecolor"),r("coastlinewidth")),r("showocean",!!y&&void 0)&&r("oceancolor")}(p?(P=-96.6,z=38.7):(P=d?O:I,z=(E[0]+E[1])/2),r("center.lon",P),r("center.lat",z),g)&&r("projection.parallels",f.projParallels||[0,60]);r("projection.scale"),r("showland",!!y&&void 0)&&r("landcolor"),r("showlakes",!!y&&void 0)&&r("lakecolor"),r("showrivers",!!y&&void 0)&&(r("rivercolor"),r("riverwidth")),r("showcountries",d&&"usa"!==u&&y)&&(r("countrycolor"),r("countrywidth")),("usa"===u||"north america"===u&&50===c)&&(r("showsubunits",y),r("subunitcolor"),r("subunitwidth")),d||r("showframe",y)&&(r("framecolor"),r("framewidth")),r("bgcolor"),r("fitbounds")&&(delete e.projection.scale,d?(delete e.center.lon,delete e.center.lat):m?(delete e.center.lon,delete e.center.lat,delete e.projection.rotation.lon,delete e.projection.rotation.lat,delete e.lonaxis.range,delete e.lataxis.range):(delete e.center.lon,delete e.center.lat,delete e.projection.rotation.lon))}e.exports=function(t,e,r){i(t,e,r,{type:"geo",attributes:s,handleDefaults:c,fullData:r,partition:"y"})}},{"../../lib":778,"../get_data":865,"../subplot_defaults":905,"./constants":858,"./layout_attributes":861}],863:[function(t,e,r){"use strict";e.exports=function(t){function e(t,e){return{type:"Feature",id:t.id,properties:t.properties,geometry:r(t.geometry,e)}}function r(e,n){if(!e)return null;if("GeometryCollection"===e.type)return{type:"GeometryCollection",geometries:object.geometries.map((function(t){return r(t,n)}))};if(!c.hasOwnProperty(e.type))return null;var i=c[e.type];return t.geo.stream(e,n(i)),i.result()}t.geo.project=function(t,e){var i=e.stream;if(!i)throw new Error("not yet supported");return(t&&n.hasOwnProperty(t.type)?n[t.type]:r)(t,i)};var n={Feature:e,FeatureCollection:function(t,r){return{type:"FeatureCollection",features:t.features.map((function(t){return e(t,r)}))}}},i=[],a=[],o={point:function(t,e){i.push([t,e])},result:function(){var t=i.length?i.length<2?{type:"Point",coordinates:i[0]}:{type:"MultiPoint",coordinates:i}:null;return i=[],t}},s={lineStart:u,point:function(t,e){i.push([t,e])},lineEnd:function(){i.length&&(a.push(i),i=[])},result:function(){var t=a.length?a.length<2?{type:"LineString",coordinates:a[0]}:{type:"MultiLineString",coordinates:a}:null;return a=[],t}},l={polygonStart:u,lineStart:u,point:function(t,e){i.push([t,e])},lineEnd:function(){var t=i.length;if(t){do{i.push(i[0].slice())}while(++t<4);a.push(i),i=[]}},polygonEnd:u,result:function(){if(!a.length)return null;var t=[],e=[];return a.forEach((function(r){!function(t){if((e=t.length)<4)return!1;var e,r=0,n=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];for(;++rn^p>n&&r<(h-c)*(n-u)/(p-u)+c&&(i=!i)}return i}(t[0],r))return t.push(e),!0}))||t.push([e])})),a=[],t.length?t.length>1?{type:"MultiPolygon",coordinates:t}:{type:"Polygon",coordinates:t[0]}:null}},c={Point:o,MultiPoint:o,LineString:s,MultiLineString:s,Polygon:l,MultiPolygon:l,Sphere:l};function u(){}var f=1e-6,h=Math.PI,p=h/2,d=(Math.sqrt(h),h/180),g=180/h;function m(t){return t>1?p:t<-1?-p:Math.asin(t)}function v(t){return t>1?0:t<-1?h:Math.acos(t)}var y=t.geo.projection,x=t.geo.projectionMutator;function b(t,e){var r=(2+p)*Math.sin(e);e/=2;for(var n=0,i=1/0;n<10&&Math.abs(i)>f;n++){var a=Math.cos(e);e-=i=(e+Math.sin(e)*(a+2)-r)/(2*a*(1+a))}return[2/Math.sqrt(h*(4+h))*t*(1+Math.cos(e)),2*Math.sqrt(h/(4+h))*Math.sin(e)]}t.geo.interrupt=function(e){var r,n=[[[[-h,0],[0,p],[h,0]]],[[[-h,0],[0,-p],[h,0]]]];function i(t,r){for(var i=r<0?-1:1,a=n[+(r<0)],o=0,s=a.length-1;oa[o][2][0];++o);var l=e(t-a[o][1][0],r);return l[0]+=e(a[o][1][0],i*r>i*a[o][0][1]?a[o][0][1]:r)[0],l}function a(){r=n.map((function(t){return t.map((function(t){var r,n=e(t[0][0],t[0][1])[0],i=e(t[2][0],t[2][1])[0],a=e(t[1][0],t[0][1])[1],o=e(t[1][0],t[1][1])[1];return a>o&&(r=a,a=o,o=r),[[n,a],[i,o]]}))}))}e.invert&&(i.invert=function(t,a){for(var o=r[+(a<0)],s=n[+(a<0)],l=0,u=o.length;l=0;--i){var p;o=180*(p=n[1][i])[0][0]/h,s=180*p[0][1]/h,c=180*p[1][1]/h,u=180*p[2][0]/h,f=180*p[2][1]/h;r.push(l([[u-e,f-e],[u-e,c+e],[o+e,c+e],[o+e,s-e]],30))}return{type:"Polygon",coordinates:[t.merge(r)]}}(),a)},i},o.lobes=function(t){return arguments.length?(n=t.map((function(t){return t.map((function(t){return[[t[0][0]*h/180,t[0][1]*h/180],[t[1][0]*h/180,t[1][1]*h/180],[t[2][0]*h/180,t[2][1]*h/180]]}))})),a(),o):n.map((function(t){return t.map((function(t){return[[180*t[0][0]/h,180*t[0][1]/h],[180*t[1][0]/h,180*t[1][1]/h],[180*t[2][0]/h,180*t[2][1]/h]]}))}))},o},b.invert=function(t,e){var r=.5*e*Math.sqrt((4+h)/h),n=m(r),i=Math.cos(n);return[t/(2/Math.sqrt(h*(4+h))*(1+i)),m((n+r*(i+2))/(2+p))]},(t.geo.eckert4=function(){return y(b)}).raw=b;var _=t.geo.azimuthalEqualArea.raw;function w(t,e){if(arguments.length<2&&(e=t),1===e)return _;if(e===1/0)return T;function r(r,n){var i=_(r/e,n);return i[0]*=t,i}return r.invert=function(r,n){var i=_.invert(r/t,n);return i[0]*=e,i},r}function T(t,e){return[t*Math.cos(e)/Math.cos(e/=2),2*Math.sin(e)]}function k(t,e){return[3*t/(2*h)*Math.sqrt(h*h/3-e*e),e]}function M(t,e){return[t,1.25*Math.log(Math.tan(h/4+.4*e))]}function A(t){return function(e){var r,n=t*Math.sin(e),i=30;do{e-=r=(e+Math.sin(e)-n)/(1+Math.cos(e))}while(Math.abs(r)>f&&--i>0);return e/2}}T.invert=function(t,e){var r=2*m(e/2);return[t*Math.cos(r/2)/Math.cos(r),r]},(t.geo.hammer=function(){var t=2,e=x(w),r=e(t);return r.coefficient=function(r){return arguments.length?e(t=+r):t},r}).raw=w,k.invert=function(t,e){return[2/3*h*t/Math.sqrt(h*h/3-e*e),e]},(t.geo.kavrayskiy7=function(){return y(k)}).raw=k,M.invert=function(t,e){return[t,2.5*Math.atan(Math.exp(.8*e))-.625*h]},(t.geo.miller=function(){return y(M)}).raw=M,A(h);var S=function(t,e,r){var n=A(r);function i(r,i){return[t*r*Math.cos(i=n(i)),e*Math.sin(i)]}return i.invert=function(n,i){var a=m(i/e);return[n/(t*Math.cos(a)),m((2*a+Math.sin(2*a))/r)]},i}(Math.SQRT2/p,Math.SQRT2,h);function E(t,e){var r=e*e,n=r*r;return[t*(.8707-.131979*r+n*(n*(.003971*r-.001529*n)-.013791)),e*(1.007226+r*(.015085+n*(.028874*r-.044475-.005916*n)))]}(t.geo.mollweide=function(){return y(S)}).raw=S,E.invert=function(t,e){var r,n=e,i=25;do{var a=n*n,o=a*a;n-=r=(n*(1.007226+a*(.015085+o*(.028874*a-.044475-.005916*o)))-e)/(1.007226+a*(.045255+o*(.259866*a-.311325-.005916*11*o)))}while(Math.abs(r)>f&&--i>0);return[t/(.8707+(a=n*n)*(a*(a*a*a*(.003971-.001529*a)-.013791)-.131979)),n]},(t.geo.naturalEarth=function(){return y(E)}).raw=E;var C=[[.9986,-.062],[1,0],[.9986,.062],[.9954,.124],[.99,.186],[.9822,.248],[.973,.31],[.96,.372],[.9427,.434],[.9216,.4958],[.8962,.5571],[.8679,.6176],[.835,.6769],[.7986,.7346],[.7597,.7903],[.7186,.8435],[.6732,.8936],[.6213,.9394],[.5722,.9761],[.5322,1]];function L(t,e){var r,n=Math.min(18,36*Math.abs(e)/h),i=Math.floor(n),a=n-i,o=(r=C[i])[0],s=r[1],l=(r=C[++i])[0],c=r[1],u=(r=C[Math.min(19,++i)])[0],f=r[1];return[t*(l+a*(u-o)/2+a*a*(u-2*l+o)/2),(e>0?p:-p)*(c+a*(f-s)/2+a*a*(f-2*c+s)/2)]}function I(t,e){return[t*Math.cos(e),e]}function P(t,e){var r,n=Math.cos(e),i=(r=v(n*Math.cos(t/=2)))?r/Math.sin(r):1;return[2*n*Math.sin(t)*i,Math.sin(e)*i]}function z(t,e){var r=P(t,e);return[(r[0]+t/p)/2,(r[1]+e)/2]}C.forEach((function(t){t[1]*=1.0144})),L.invert=function(t,e){var r=e/p,n=90*r,i=Math.min(18,Math.abs(n/5)),a=Math.max(0,Math.floor(i));do{var o=C[a][1],s=C[a+1][1],l=C[Math.min(19,a+2)][1],c=l-o,u=l-2*s+o,f=2*(Math.abs(r)-s)/c,h=u/c,m=f*(1-h*f*(1-2*h*f));if(m>=0||1===a){n=(e>=0?5:-5)*(m+i);var v,y=50;do{m=(i=Math.min(18,Math.abs(n)/5))-(a=Math.floor(i)),o=C[a][1],s=C[a+1][1],l=C[Math.min(19,a+2)][1],n-=(v=(e>=0?p:-p)*(s+m*(l-o)/2+m*m*(l-2*s+o)/2)-e)*g}while(Math.abs(v)>1e-12&&--y>0);break}}while(--a>=0);var x=C[a][0],b=C[a+1][0],_=C[Math.min(19,a+2)][0];return[t/(b+m*(_-x)/2+m*m*(_-2*b+x)/2),n*d]},(t.geo.robinson=function(){return y(L)}).raw=L,I.invert=function(t,e){return[t/Math.cos(e),e]},(t.geo.sinusoidal=function(){return y(I)}).raw=I,P.invert=function(t,e){if(!(t*t+4*e*e>h*h+f)){var r=t,n=e,i=25;do{var a,o=Math.sin(r),s=Math.sin(r/2),l=Math.cos(r/2),c=Math.sin(n),u=Math.cos(n),p=Math.sin(2*n),d=c*c,g=u*u,m=s*s,y=1-g*l*l,x=y?v(u*l)*Math.sqrt(a=1/y):a=0,b=2*x*u*s-t,_=x*c-e,w=a*(g*m+x*u*l*d),T=a*(.5*o*p-2*x*c*s),k=.25*a*(p*s-x*c*g*o),M=a*(d*l+x*m*u),A=T*k-M*w;if(!A)break;var S=(_*T-b*M)/A,E=(b*k-_*w)/A;r-=S,n-=E}while((Math.abs(S)>f||Math.abs(E)>f)&&--i>0);return[r,n]}},(t.geo.aitoff=function(){return y(P)}).raw=P,z.invert=function(t,e){var r=t,n=e,i=25;do{var a,o=Math.cos(n),s=Math.sin(n),l=Math.sin(2*n),c=s*s,u=o*o,h=Math.sin(r),d=Math.cos(r/2),g=Math.sin(r/2),m=g*g,y=1-u*d*d,x=y?v(o*d)*Math.sqrt(a=1/y):a=0,b=.5*(2*x*o*g+r/p)-t,_=.5*(x*s+n)-e,w=.5*a*(u*m+x*o*d*c)+.5/p,T=a*(h*l/4-x*s*g),k=.125*a*(l*g-x*s*u*h),M=.5*a*(c*d+x*m*o)+.5,A=T*k-M*w,S=(_*T-b*M)/A,E=(b*k-_*w)/A;r-=S,n-=E}while((Math.abs(S)>f||Math.abs(E)>f)&&--i>0);return[r,n]},(t.geo.winkel3=function(){return y(z)}).raw=z}},{}],864:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../registry"),o=Math.PI/180,s=180/Math.PI,l={cursor:"pointer"},c={cursor:"auto"};function u(t,e){return n.behavior.zoom().translate(e.translate()).scale(e.scale())}function f(t,e,r){var n=t.id,o=t.graphDiv,s=o.layout,l=s[n],c=o._fullLayout,u=c[n],f={},h={};function p(t,e){f[n+"."+t]=i.nestedProperty(l,t).get(),a.call("_storeDirectGUIEdit",s,c._preGUI,f);var r=i.nestedProperty(u,t);r.get()!==e&&(r.set(e),i.nestedProperty(l,t).set(e),h[n+"."+t]=e)}r(p),p("projection.scale",e.scale()/t.fitScale),p("fitbounds",!1),o.emit("plotly_relayout",h)}function h(t,e){var r=u(0,e);function i(r){var n=e.invert(t.midPt);r("center.lon",n[0]),r("center.lat",n[1])}return r.on("zoomstart",(function(){n.select(this).style(l)})).on("zoom",(function(){e.scale(n.event.scale).translate(n.event.translate),t.render();var r=e.invert(t.midPt);t.graphDiv.emit("plotly_relayouting",{"geo.projection.scale":e.scale()/t.fitScale,"geo.center.lon":r[0],"geo.center.lat":r[1]})})).on("zoomend",(function(){n.select(this).style(c),f(t,e,i)})),r}function p(t,e){var r,i,a,o,s,h,p,d,g,m=u(0,e);function v(t){return e.invert(t)}function y(r){var n=e.rotate(),i=e.invert(t.midPt);r("projection.rotation.lon",-n[0]),r("center.lon",i[0]),r("center.lat",i[1])}return m.on("zoomstart",(function(){n.select(this).style(l),r=n.mouse(this),i=e.rotate(),a=e.translate(),o=i,s=v(r)})).on("zoom",(function(){if(h=n.mouse(this),function(t){var r=v(t);if(!r)return!0;var n=e(r);return Math.abs(n[0]-t[0])>2||Math.abs(n[1]-t[1])>2}(r))return m.scale(e.scale()),void m.translate(e.translate());e.scale(n.event.scale),e.translate([a[0],n.event.translate[1]]),s?v(h)&&(d=v(h),p=[o[0]+(d[0]-s[0]),i[1],i[2]],e.rotate(p),o=p):s=v(r=h),g=!0,t.render();var l=e.rotate(),c=e.invert(t.midPt);t.graphDiv.emit("plotly_relayouting",{"geo.projection.scale":e.scale()/t.fitScale,"geo.center.lon":c[0],"geo.center.lat":c[1],"geo.projection.rotation.lon":-l[0]})})).on("zoomend",(function(){n.select(this).style(c),g&&f(t,e,y)})),m}function d(t,e){var r,i={r:e.rotate(),k:e.scale()},a=u(0,e),o=function(t){var e=0,r=arguments.length,i=[];for(;++ed?(a=(f>0?90:-90)-p,i=0):(a=Math.asin(f/d)*s-p,i=Math.sqrt(d*d-f*f));var g=180-a-2*p,m=(Math.atan2(h,u)-Math.atan2(c,i))*s,v=(Math.atan2(h,u)-Math.atan2(c,-i))*s;return b(r[0],r[1],a,m)<=b(r[0],r[1],g,v)?[a,m,r[2]]:[g,v,r[2]]}function b(t,e,r,n){var i=_(r-t),a=_(n-e);return Math.sqrt(i*i+a*a)}function _(t){return(t%360+540)%360-180}function w(t,e,r){var n=r*o,i=t.slice(),a=0===e?1:0,s=2===e?1:2,l=Math.cos(n),c=Math.sin(n);return i[a]=t[a]*l-t[s]*c,i[s]=t[s]*l+t[a]*c,i}function T(t){return[Math.atan2(2*(t[0]*t[1]+t[2]*t[3]),1-2*(t[1]*t[1]+t[2]*t[2]))*s,Math.asin(Math.max(-1,Math.min(1,2*(t[0]*t[2]-t[3]*t[1]))))*s,Math.atan2(2*(t[0]*t[3]+t[1]*t[2]),1-2*(t[2]*t[2]+t[3]*t[3]))*s]}function k(t,e){for(var r=0,n=0,i=t.length;nMath.abs(s)?(c.boxEnd[1]=c.boxStart[1]+Math.abs(a)*_*(s>=0?1:-1),c.boxEnd[1]l[3]&&(c.boxEnd[1]=l[3],c.boxEnd[0]=c.boxStart[0]+(l[3]-c.boxStart[1])/Math.abs(_))):(c.boxEnd[0]=c.boxStart[0]+Math.abs(s)/_*(a>=0?1:-1),c.boxEnd[0]l[2]&&(c.boxEnd[0]=l[2],c.boxEnd[1]=c.boxStart[1]+(l[2]-c.boxStart[0])*Math.abs(_)))}}else c.boxEnabled?(a=c.boxStart[0]!==c.boxEnd[0],s=c.boxStart[1]!==c.boxEnd[1],a||s?(a&&(m(0,c.boxStart[0],c.boxEnd[0]),t.xaxis.autorange=!1),s&&(m(1,c.boxStart[1],c.boxEnd[1]),t.yaxis.autorange=!1),t.relayoutCallback()):t.glplot.setDirty(),c.boxEnabled=!1,c.boxInited=!1):c.boxInited&&(c.boxInited=!1);break;case"pan":c.boxEnabled=!1,c.boxInited=!1,e?(c.panning||(c.dragStart[0]=n,c.dragStart[1]=i),Math.abs(c.dragStart[0]-n).999&&(g="turntable"):g="turntable")}else g="turntable";r("dragmode",g),r("hovermode",n.getDfltFromLayout("hovermode"))}e.exports=function(t,e,r){var i=e._basePlotModules.length>1;o(t,e,r,{type:"gl3d",attributes:l,handleDefaults:u,fullLayout:e,font:e.font,fullData:r,getDfltFromLayout:function(e){if(!i)return n.validate(t[e],l[e])?t[e]:void 0},autotypenumbersDflt:e.autotypenumbers,paper_bgcolor:e.paper_bgcolor,calendar:e.calendar})}},{"../../../components/color":643,"../../../lib":778,"../../../registry":911,"../../get_data":865,"../../subplot_defaults":905,"./axis_defaults":873,"./layout_attributes":876}],876:[function(t,e,r){"use strict";var n=t("./axis_attributes"),i=t("../../domain").attributes,a=t("../../../lib/extend").extendFlat,o=t("../../../lib").counterRegex;function s(t,e,r){return{x:{valType:"number",dflt:t,editType:"camera"},y:{valType:"number",dflt:e,editType:"camera"},z:{valType:"number",dflt:r,editType:"camera"},editType:"camera"}}e.exports={_arrayAttrRegexps:[o("scene",".annotations",!0)],bgcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"plot"},camera:{up:a(s(0,0,1),{}),center:a(s(0,0,0),{}),eye:a(s(1.25,1.25,1.25),{}),projection:{type:{valType:"enumerated",values:["perspective","orthographic"],dflt:"perspective",editType:"calc"},editType:"calc"},editType:"camera"},domain:i({name:"scene",editType:"plot"}),aspectmode:{valType:"enumerated",values:["auto","cube","data","manual"],dflt:"auto",editType:"plot",impliedEdits:{"aspectratio.x":void 0,"aspectratio.y":void 0,"aspectratio.z":void 0}},aspectratio:{x:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},y:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},z:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},editType:"plot",impliedEdits:{aspectmode:"manual"}},xaxis:n,yaxis:n,zaxis:n,dragmode:{valType:"enumerated",values:["orbit","turntable","zoom","pan",!1],editType:"plot"},hovermode:{valType:"enumerated",values:["closest",!1],dflt:"closest",editType:"modebar"},uirevision:{valType:"any",editType:"none"},editType:"plot",_deprecated:{cameraposition:{valType:"info_array",editType:"camera"}}}},{"../../../lib":778,"../../../lib/extend":768,"../../domain":855,"./axis_attributes":872}],877:[function(t,e,r){"use strict";var n=t("../../../lib/str2rgbarray"),i=["xaxis","yaxis","zaxis"];function a(){this.enabled=[!0,!0,!0],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.drawSides=[!0,!0,!0],this.lineWidth=[1,1,1]}a.prototype.merge=function(t){for(var e=0;e<3;++e){var r=t[i[e]];r.visible?(this.enabled[e]=r.showspikes,this.colors[e]=n(r.spikecolor),this.drawSides[e]=r.spikesides,this.lineWidth[e]=r.spikethickness):(this.enabled[e]=!1,this.drawSides[e]=!1)}},e.exports=function(t){var e=new a;return e.merge(t),e}},{"../../../lib/str2rgbarray":802}],878:[function(t,e,r){"use strict";e.exports=function(t){for(var e=t.axesOptions,r=t.glplot.axesPixels,s=t.fullSceneLayout,l=[[],[],[]],c=0;c<3;++c){var u=s[a[c]];if(u._length=(r[c].hi-r[c].lo)*r[c].pixelsPerDataUnit/t.dataScale[c],Math.abs(u._length)===1/0||isNaN(u._length))l[c]=[];else{u._input_range=u.range.slice(),u.range[0]=r[c].lo/t.dataScale[c],u.range[1]=r[c].hi/t.dataScale[c],u._m=1/(t.dataScale[c]*r[c].pixelsPerDataUnit),u.range[0]===u.range[1]&&(u.range[0]-=1,u.range[1]+=1);var f=u.tickmode;if("auto"===u.tickmode){u.tickmode="linear";var h=u.nticks||i.constrain(u._length/40,4,9);n.autoTicks(u,Math.abs(u.range[1]-u.range[0])/h)}for(var p=n.calcTicks(u,{msUTC:!0}),d=0;d/g," "));l[c]=p,u.tickmode=f}}e.ticks=l;for(c=0;c<3;++c){o[c]=.5*(t.glplot.bounds[0][c]+t.glplot.bounds[1][c]);for(d=0;d<2;++d)e.bounds[d][c]=t.glplot.bounds[d][c]}t.contourLevels=function(t){for(var e=new Array(3),r=0;r<3;++r){for(var n=t[r],i=new Array(n.length),a=0;ar.deltaY?1.1:1/1.1,a=t.glplot.getAspectratio();t.glplot.setAspectratio({x:n*a.x,y:n*a.y,z:n*a.z})}i(t)}}),!!c&&{passive:!1}),t.glplot.canvas.addEventListener("mousemove",(function(){if(!1!==t.fullSceneLayout.dragmode&&0!==t.camera.mouseListener.buttons){var e=n();t.graphDiv.emit("plotly_relayouting",e)}})),t.staticMode||t.glplot.canvas.addEventListener("webglcontextlost",(function(r){e&&e.emit&&e.emit("plotly_webglcontextlost",{event:r,layer:t.id})}),!1)),t.glplot.oncontextloss=function(){t.recoverContext()},t.glplot.onrender=function(){t.render()},!0},w.render=function(){var t,e=this,r=e.graphDiv,n=e.svgContainer,i=e.container.getBoundingClientRect();r._fullLayout._calcInverseTransform(r);var a=r._fullLayout._invScaleX,o=r._fullLayout._invScaleY,s=i.width*a,l=i.height*o;n.setAttributeNS(null,"viewBox","0 0 "+s+" "+l),n.setAttributeNS(null,"width",s),n.setAttributeNS(null,"height",l),b(e),e.glplot.axes.update(e.axesOptions);for(var c,u=Object.keys(e.traces),h=null,g=e.glplot.selection,m=0;m")):"isosurface"===t.type||"volume"===t.type?(k.valueLabel=p.tickText(e._mockAxis,e._mockAxis.d2l(g.traceCoordinate[3]),"hover").text,E.push("value: "+k.valueLabel),g.textLabel&&E.push(g.textLabel),_=E.join("
")):_=g.textLabel;var C={x:g.traceCoordinate[0],y:g.traceCoordinate[1],z:g.traceCoordinate[2],data:w._input,fullData:w,curveNumber:w.index,pointNumber:T};d.appendArrayPointValue(C,w,T),t._module.eventData&&(C=w._module.eventData(C,g,w,{},T));var L={points:[C]};e.fullSceneLayout.hovermode&&d.loneHover({trace:w,x:(.5+.5*x[0]/x[3])*s,y:(.5-.5*x[1]/x[3])*l,xLabel:k.xLabel,yLabel:k.yLabel,zLabel:k.zLabel,text:_,name:h.name,color:d.castHoverOption(w,T,"bgcolor")||h.color,borderColor:d.castHoverOption(w,T,"bordercolor"),fontFamily:d.castHoverOption(w,T,"font.family"),fontSize:d.castHoverOption(w,T,"font.size"),fontColor:d.castHoverOption(w,T,"font.color"),nameLength:d.castHoverOption(w,T,"namelength"),textAlign:d.castHoverOption(w,T,"align"),hovertemplate:f.castOption(w,T,"hovertemplate"),hovertemplateLabels:f.extendFlat({},C,k),eventData:[C]},{container:n,gd:r}),g.buttons&&g.distance<5?r.emit("plotly_click",L):r.emit("plotly_hover",L),c=L}else d.loneUnhover(n),r.emit("plotly_unhover",c);e.drawAnnotations(e)},w.recoverContext=function(){var t=this;t.glplot.dispose();var e=function(){t.glplot.gl.isContextLost()?requestAnimationFrame(e):t.initializeGLPlot()?t.plot.apply(t,t.plotArgs):f.error("Catastrophic and unrecoverable WebGL error. Context lost.")};requestAnimationFrame(e)};var k=["xaxis","yaxis","zaxis"];function M(t,e,r){for(var n=t.fullSceneLayout,i=0;i<3;i++){var a=k[i],o=a.charAt(0),s=n[a],l=e[o],c=e[o+"calendar"],u=e["_"+o+"length"];if(f.isArrayOrTypedArray(l))for(var h,p=0;p<(u||l.length);p++)if(f.isArrayOrTypedArray(l[p]))for(var d=0;dm[1][a])m[0][a]=-1,m[1][a]=1;else{var C=m[1][a]-m[0][a];m[0][a]-=C/32,m[1][a]+=C/32}if("reversed"===s.autorange){var L=m[0][a];m[0][a]=m[1][a],m[1][a]=L}}else{var I=s.range;m[0][a]=s.r2l(I[0]),m[1][a]=s.r2l(I[1])}m[0][a]===m[1][a]&&(m[0][a]-=1,m[1][a]+=1),v[a]=m[1][a]-m[0][a],this.glplot.setBounds(a,{min:m[0][a]*h[a],max:m[1][a]*h[a]})}var P=c.aspectmode;if("cube"===P)d=[1,1,1];else if("manual"===P){var z=c.aspectratio;d=[z.x,z.y,z.z]}else{if("auto"!==P&&"data"!==P)throw new Error("scene.js aspectRatio was not one of the enumerated types");var O=[1,1,1];for(a=0;a<3;++a){var D=y[l=(s=c[k[a]]).type];O[a]=Math.pow(D.acc,1/D.count)/h[a]}d="data"===P||Math.max.apply(null,O)/Math.min.apply(null,O)<=4?O:[1,1,1]}c.aspectratio.x=u.aspectratio.x=d[0],c.aspectratio.y=u.aspectratio.y=d[1],c.aspectratio.z=u.aspectratio.z=d[2],this.glplot.setAspectratio(c.aspectratio),this.viewInitial.aspectratio||(this.viewInitial.aspectratio={x:c.aspectratio.x,y:c.aspectratio.y,z:c.aspectratio.z}),this.viewInitial.aspectmode||(this.viewInitial.aspectmode=c.aspectmode);var R=c.domain||null,F=e._size||null;if(R&&F){var B=this.container.style;B.position="absolute",B.left=F.l+R.x[0]*F.w+"px",B.top=F.t+(1-R.y[1])*F.h+"px",B.width=F.w*(R.x[1]-R.x[0])+"px",B.height=F.h*(R.y[1]-R.y[0])+"px"}this.glplot.redraw()}},w.destroy=function(){this.glplot&&(this.camera.mouseListener.enabled=!1,this.container.removeEventListener("wheel",this.camera.wheelListener),this.camera=null,this.glplot.dispose(),this.container.parentNode.removeChild(this.container),this.glplot=null)},w.getCamera=function(){var t;return this.camera.view.recalcMatrix(this.camera.view.lastT()),{up:{x:(t=this.camera).up[0],y:t.up[1],z:t.up[2]},center:{x:t.center[0],y:t.center[1],z:t.center[2]},eye:{x:t.eye[0],y:t.eye[1],z:t.eye[2]},projection:{type:!0===t._ortho?"orthographic":"perspective"}}},w.setViewport=function(t){var e,r=t.camera;this.camera.lookAt.apply(this,[[(e=r).eye.x,e.eye.y,e.eye.z],[e.center.x,e.center.y,e.center.z],[e.up.x,e.up.y,e.up.z]]),this.glplot.setAspectratio(t.aspectratio),"orthographic"===r.projection.type!==this.camera._ortho&&(this.glplot.redraw(),this.glplot.clearRGBA(),this.glplot.dispose(),this.initializeGLPlot())},w.isCameraChanged=function(t){var e=this.getCamera(),r=f.nestedProperty(t,this.id+".camera").get();function n(t,e,r,n){var i=["up","center","eye"],a=["x","y","z"];return e[i[r]]&&t[i[r]][a[n]]===e[i[r]][a[n]]}var i=!1;if(void 0===r)i=!0;else{for(var a=0;a<3;a++)for(var o=0;o<3;o++)if(!n(e,r,a,o)){i=!0;break}(!r.projection||e.projection&&e.projection.type!==r.projection.type)&&(i=!0)}return i},w.isAspectChanged=function(t){var e=this.glplot.getAspectratio(),r=f.nestedProperty(t,this.id+".aspectratio").get();return void 0===r||r.x!==e.x||r.y!==e.y||r.z!==e.z},w.saveLayout=function(t){var e,r,n,i,a,o,s=this.fullLayout,l=this.isCameraChanged(t),c=this.isAspectChanged(t),h=l||c;if(h){var p={};if(l&&(e=this.getCamera(),n=(r=f.nestedProperty(t,this.id+".camera")).get(),p[this.id+".camera"]=n),c&&(i=this.glplot.getAspectratio(),o=(a=f.nestedProperty(t,this.id+".aspectratio")).get(),p[this.id+".aspectratio"]=o),u.call("_storeDirectGUIEdit",t,s._preGUI,p),l)r.set(e),f.nestedProperty(s,this.id+".camera").set(e);if(c)a.set(i),f.nestedProperty(s,this.id+".aspectratio").set(i),this.glplot.redraw()}return h},w.updateFx=function(t,e){var r=this.camera;if(r)if("orbit"===t)r.mode="orbit",r.keyBindingMode="rotate";else if("turntable"===t){r.up=[0,0,1],r.mode="turntable",r.keyBindingMode="rotate";var n=this.graphDiv,i=n._fullLayout,a=this.fullSceneLayout.camera,o=a.up.x,s=a.up.y,l=a.up.z;if(l/Math.sqrt(o*o+s*s+l*l)<.999){var c=this.id+".camera.up",h={x:0,y:0,z:1},p={};p[c]=h;var d=n.layout;u.call("_storeDirectGUIEdit",d,i._preGUI,p),a.up=h,f.nestedProperty(d,c).set(h)}}else r.keyBindingMode=t;this.fullSceneLayout.hovermode=e},w.toImage=function(t){t||(t="png"),this.staticMode&&this.container.appendChild(n),this.glplot.redraw();var e=this.glplot.gl,r=e.drawingBufferWidth,i=e.drawingBufferHeight;e.bindFramebuffer(e.FRAMEBUFFER,null);var a=new Uint8Array(r*i*4);e.readPixels(0,0,r,i,e.RGBA,e.UNSIGNED_BYTE,a),function(t,e,r){for(var n=0,i=r-1;n0)for(var s=255/o,l=0;l<3;++l)t[a+l]=Math.min(s*t[a+l],255)}}(a,r,i);var o=document.createElement("canvas");o.width=r,o.height=i;var s,l=o.getContext("2d"),c=l.createImageData(r,i);switch(c.data.set(a),l.putImageData(c,0,0),t){case"jpeg":s=o.toDataURL("image/jpeg");break;case"webp":s=o.toDataURL("image/webp");break;default:s=o.toDataURL("image/png")}return this.staticMode&&this.container.removeChild(n),s},w.setConvert=function(){for(var t=0;t<3;t++){var e=this.fullSceneLayout[k[t]];p.setConvert(e,this.fullLayout),e.setScale=f.noop}},w.make4thDimension=function(){var t=this.graphDiv._fullLayout;this._mockAxis={type:"linear",showexponent:"all",exponentformat:"B"},p.setConvert(this._mockAxis,t)},e.exports=_},{"../../components/fx":683,"../../lib":778,"../../lib/show_no_webgl_msg":800,"../../lib/str2rgbarray":802,"../../plots/cartesian/axes":828,"../../registry":911,"./layout/convert":874,"./layout/spikes":877,"./layout/tick_marks":878,"./project":879,"gl-plot3d":321,"has-passive-events":441,"webgl-context":606}],881:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){n=n||t.length;for(var i=new Array(n),a=0;a\xa9 OpenStreetMap',tiles:["https://a.tile.openstreetmap.org/{z}/{x}/{y}.png","https://b.tile.openstreetmap.org/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-osm-tiles",type:"raster",source:"plotly-osm-tiles",minzoom:0,maxzoom:22}]},"white-bg":{id:"white-bg",version:8,sources:{},layers:[{id:"white-bg",type:"background",paint:{"background-color":"#FFFFFF"},minzoom:0,maxzoom:22}]},"carto-positron":{id:"carto-positron",version:8,sources:{"plotly-carto-positron":{type:"raster",attribution:'\xa9 CARTO',tiles:["https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-carto-positron",type:"raster",source:"plotly-carto-positron",minzoom:0,maxzoom:22}]},"carto-darkmatter":{id:"carto-darkmatter",version:8,sources:{"plotly-carto-darkmatter":{type:"raster",attribution:'\xa9 CARTO',tiles:["https://cartodb-basemaps-c.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-carto-darkmatter",type:"raster",source:"plotly-carto-darkmatter",minzoom:0,maxzoom:22}]},"stamen-terrain":{id:"stamen-terrain",version:8,sources:{"plotly-stamen-terrain":{type:"raster",attribution:'Map tiles by Stamen Design, under CC BY 3.0 | Data by OpenStreetMap, under ODbL.',tiles:["https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-terrain",type:"raster",source:"plotly-stamen-terrain",minzoom:0,maxzoom:22}]},"stamen-toner":{id:"stamen-toner",version:8,sources:{"plotly-stamen-toner":{type:"raster",attribution:'Map tiles by Stamen Design, under CC BY 3.0 | Data by OpenStreetMap, under ODbL.',tiles:["https://stamen-tiles.a.ssl.fastly.net/toner/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-toner",type:"raster",source:"plotly-stamen-toner",minzoom:0,maxzoom:22}]},"stamen-watercolor":{id:"stamen-watercolor",version:8,sources:{"plotly-stamen-watercolor":{type:"raster",attribution:'Map tiles by Stamen Design, under CC BY 3.0 | Data by OpenStreetMap, under CC BY SA.',tiles:["https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-watercolor",type:"raster",source:"plotly-stamen-watercolor",minzoom:0,maxzoom:22}]}},i=Object.keys(n);e.exports={requiredVersion:"1.10.1",styleUrlPrefix:"mapbox://styles/mapbox/",styleUrlSuffix:"v9",styleValuesMapbox:["basic","streets","outdoors","light","dark","satellite","satellite-streets"],styleValueDflt:"basic",stylesNonMapbox:n,styleValuesNonMapbox:i,traceLayerPrefix:"plotly-trace-layer-",layoutLayerPrefix:"plotly-layout-layer-",wrongVersionErrorMsg:["Your custom plotly.js bundle is not using the correct mapbox-gl version","Please install mapbox-gl@1.10.1."].join("\n"),noAccessTokenErrorMsg:["Missing Mapbox access token.","Mapbox trace type require a Mapbox access token to be registered.","For example:"," Plotly.plot(gd, data, layout, { mapboxAccessToken: 'my-access-token' });","More info here: https://www.mapbox.com/help/define-access-token/"].join("\n"),missingStyleErrorMsg:["No valid mapbox style found, please set `mapbox.style` to one of:",i.join(", "),"or register a Mapbox access token to use a Mapbox-served style."].join("\n"),multipleTokensErrorMsg:["Set multiple mapbox access token across different mapbox subplot,","using first token found as mapbox-gl does not allow multipleaccess tokens on the same page."].join("\n"),mapOnErrorMsg:"Mapbox error.",mapboxLogo:{path0:"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z",path1:"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z",path2:"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z",polygon:"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34"},styleRules:{map:"overflow:hidden;position:relative;","missing-css":"display:none;",canary:"background-color:salmon;","ctrl-bottom-left":"position: absolute; pointer-events: none; z-index: 2; bottom: 0; left: 0;","ctrl-bottom-right":"position: absolute; pointer-events: none; z-index: 2; right: 0; bottom: 0;",ctrl:"clear: both; pointer-events: auto; transform: translate(0, 0);","ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner":"display: none;","ctrl-attrib.mapboxgl-compact:hover .mapboxgl-ctrl-attrib-inner":"display: block; margin-top:2px","ctrl-attrib.mapboxgl-compact:hover":"padding: 2px 24px 2px 4px; visibility: visible; margin-top: 6px;","ctrl-attrib.mapboxgl-compact::after":'content: ""; cursor: pointer; position: absolute; background-image: url(\'data:image/svg+xml;charset=utf-8,%3Csvg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E %3Cpath fill="%23333333" fill-rule="evenodd" d="M4,10a6,6 0 1,0 12,0a6,6 0 1,0 -12,0 M9,7a1,1 0 1,0 2,0a1,1 0 1,0 -2,0 M9,10a1,1 0 1,1 2,0l0,3a1,1 0 1,1 -2,0"/%3E %3C/svg%3E\'); background-color: rgba(255, 255, 255, 0.5); width: 24px; height: 24px; box-sizing: border-box; border-radius: 12px;',"ctrl-attrib.mapboxgl-compact":"min-height: 20px; padding: 0; margin: 10px; position: relative; background-color: #fff; border-radius: 3px 12px 12px 3px;","ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after":"bottom: 0; right: 0","ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after":"bottom: 0; left: 0","ctrl-bottom-left .mapboxgl-ctrl":"margin: 0 0 10px 10px; float: left;","ctrl-bottom-right .mapboxgl-ctrl":"margin: 0 10px 10px 0; float: right;","ctrl-attrib":"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px","ctrl-attrib a":"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px","ctrl-attrib a:hover":"color: inherit; text-decoration: underline;","ctrl-attrib .mapbox-improve-map":"font-weight: bold; margin-left: 2px;","attrib-empty":"display: none;","ctrl-logo":'display:block; width: 21px; height: 21px; background-image: url(\'data:image/svg+xml;charset=utf-8,%3C?xml version="1.0" encoding="utf-8"?%3E %3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 21 21" style="enable-background:new 0 0 21 21;" xml:space="preserve"%3E%3Cg transform="translate(0,0.01)"%3E%3Cpath d="m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z" style="opacity:0.9;fill:%23ffffff;enable-background:new" class="st0"/%3E%3Cpath d="M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z" style="opacity:0.35;enable-background:new" class="st1"/%3E%3Cpath d="M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z" style="opacity:0.35;enable-background:new" class="st1"/%3E%3Cpolygon points="11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34 " style="opacity:0.9;fill:%23ffffff;enable-background:new" class="st0"/%3E%3C/g%3E%3C/svg%3E\')'}}},{}],884:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){var r=t.split(" "),i=r[0],a=r[1],o=n.isArrayOrTypedArray(e)?n.mean(e):e,s=.5+o/100,l=1.5+o/100,c=["",""],u=[0,0];switch(i){case"top":c[0]="top",u[1]=-l;break;case"bottom":c[0]="bottom",u[1]=l}switch(a){case"left":c[1]="right",u[0]=-s;break;case"right":c[1]="left",u[0]=s}return{anchor:c[0]&&c[1]?c.join("-"):c[0]?c[0]:c[1]?c[1]:"center",offset:u}}},{"../../lib":778}],885:[function(t,e,r){"use strict";var n=t("mapbox-gl"),i=t("../../lib"),a=i.strTranslate,o=i.strScale,s=t("../../plots/get_data").getSubplotCalcData,l=t("../../constants/xmlns_namespaces"),c=t("d3"),u=t("../../components/drawing"),f=t("../../lib/svg_text_utils"),h=t("./mapbox"),p=r.constants=t("./constants");function d(t){return"string"==typeof t&&(-1!==p.styleValuesMapbox.indexOf(t)||0===t.indexOf("mapbox://"))}r.name="mapbox",r.attr="subplot",r.idRoot="mapbox",r.idRegex=r.attrRegex=i.counterRegex("mapbox"),r.attributes={subplot:{valType:"subplotid",dflt:"mapbox",editType:"calc"}},r.layoutAttributes=t("./layout_attributes"),r.supplyLayoutDefaults=t("./layout_defaults"),r.plot=function(t){var e=t._fullLayout,r=t.calcdata,a=e._subplots.mapbox;if(n.version!==p.requiredVersion)throw new Error(p.wrongVersionErrorMsg);var o=function(t,e){var r=t._fullLayout;if(""===t._context.mapboxAccessToken)return"";for(var n=[],a=[],o=!1,s=!1,l=0;l1&&i.warn(p.multipleTokensErrorMsg),n[0]):(a.length&&i.log(["Listed mapbox access token(s)",a.join(","),"but did not use a Mapbox map style, ignoring token(s)."].join(" ")),"")}(t,a);n.accessToken=o;for(var l=0;l_/2){var w=v.split("|").join("
");x.text(w).attr("data-unformatted",w).call(f.convertToTspans,t),b=u.bBox(x.node())}x.attr("transform",a(-3,8-b.height)),y.insert("rect",".static-attribution").attr({x:-b.width-6,y:-b.height-3,width:b.width+6,height:b.height+3,fill:"rgba(255, 255, 255, 0.75)"});var T=1;b.width+6>_&&(T=_/(b.width+6));var k=[n.l+n.w*h.x[1],n.t+n.h*(1-h.y[0])];y.attr("transform",a(k[0],k[1])+o(T))}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=0;n0){for(var r=0;r0}function u(t){var e={},r={};switch(t.type){case"circle":n.extendFlat(r,{"circle-radius":t.circle.radius,"circle-color":t.color,"circle-opacity":t.opacity});break;case"line":n.extendFlat(r,{"line-width":t.line.width,"line-color":t.color,"line-opacity":t.opacity,"line-dasharray":t.line.dash});break;case"fill":n.extendFlat(r,{"fill-color":t.color,"fill-outline-color":t.fill.outlinecolor,"fill-opacity":t.opacity});break;case"symbol":var i=t.symbol,o=a(i.textposition,i.iconsize);n.extendFlat(e,{"icon-image":i.icon+"-15","icon-size":i.iconsize/10,"text-field":i.text,"text-size":i.textfont.size,"text-anchor":o.anchor,"text-offset":o.offset,"symbol-placement":i.placement}),n.extendFlat(r,{"icon-color":t.color,"text-color":i.textfont.color,"text-opacity":t.opacity});break;case"raster":n.extendFlat(r,{"raster-fade-duration":0,"raster-opacity":t.opacity})}return{layout:e,paint:r}}l.update=function(t){this.visible?this.needsNewImage(t)?this.updateImage(t):this.needsNewSource(t)?(this.removeLayer(),this.updateSource(t),this.updateLayer(t)):this.needsNewLayer(t)?this.updateLayer(t):this.updateStyle(t):(this.updateSource(t),this.updateLayer(t)),this.visible=c(t)},l.needsNewImage=function(t){return this.subplot.map.getSource(this.idSource)&&"image"===this.sourceType&&"image"===t.sourcetype&&(this.source!==t.source||JSON.stringify(this.coordinates)!==JSON.stringify(t.coordinates))},l.needsNewSource=function(t){return this.sourceType!==t.sourcetype||JSON.stringify(this.source)!==JSON.stringify(t.source)||this.layerType!==t.type},l.needsNewLayer=function(t){return this.layerType!==t.type||this.below!==this.subplot.belowLookup["layout-"+this.index]},l.lookupBelow=function(){return this.subplot.belowLookup["layout-"+this.index]},l.updateImage=function(t){this.subplot.map.getSource(this.idSource).updateImage({url:t.source,coordinates:t.coordinates});var e=this.findFollowingMapboxLayerId(this.lookupBelow());null!==e&&this.subplot.map.moveLayer(this.idLayer,e)},l.updateSource=function(t){var e=this.subplot.map;if(e.getSource(this.idSource)&&e.removeSource(this.idSource),this.sourceType=t.sourcetype,this.source=t.source,c(t)){var r=function(t){var e,r=t.sourcetype,n=t.source,a={type:r};"geojson"===r?e="data":"vector"===r?e="string"==typeof n?"url":"tiles":"raster"===r?(e="tiles",a.tileSize=256):"image"===r&&(e="url",a.coordinates=t.coordinates);a[e]=n,t.sourceattribution&&(a.attribution=i(t.sourceattribution));return a}(t);e.addSource(this.idSource,r)}},l.findFollowingMapboxLayerId=function(t){if("traces"===t)for(var e=this.subplot.getMapLayers(),r=0;r<e.length;r++){var n=e[r].id;if("string"==typeof n&&0===n.indexOf(o.traceLayerPrefix)){t=n;break}}return t},l.updateLayer=function(t){var e=this.subplot,r=u(t),n=this.lookupBelow(),i=this.findFollowingMapboxLayerId(n);this.removeLayer(),c(t)&&e.addLayer({id:this.idLayer,source:this.idSource,"source-layer":t.sourcelayer||"",type:t.type,minzoom:t.minzoom,maxzoom:t.maxzoom,layout:r.layout,paint:r.paint},i),this.layerType=t.type,this.below=n},l.updateStyle=function(t){if(c(t)){var e=u(t);this.subplot.setOptions(this.idLayer,"setLayoutProperty",e.layout),this.subplot.setOptions(this.idLayer,"setPaintProperty",e.paint)}},l.removeLayer=function(){var t=this.subplot.map;t.getLayer(this.idLayer)&&t.removeLayer(this.idLayer)},l.dispose=function(){var t=this.subplot.map;t.getLayer(this.idLayer)&&t.removeLayer(this.idLayer),t.getSource(this.idSource)&&t.removeSource(this.idSource)},e.exports=function(t,e,r){var n=new s(t,e);return n.update(r),n}},{"../../lib":778,"../../lib/svg_text_utils":803,"./constants":883,"./convert_text_opts":884}],887:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/color").defaultLine,a=t("../domain").attributes,o=t("../font_attributes"),s=t("../../traces/scatter/attributes").textposition,l=t("../../plot_api/edit_types").overrideAll,c=t("../../plot_api/plot_template").templatedArray,u=t("./constants"),f=o({});f.family.dflt="Open Sans Regular, Arial Unicode MS Regular",(e.exports=l({_arrayAttrRegexps:[n.counterRegex("mapbox",".layers",!0)],domain:a({name:"mapbox"}),accesstoken:{valType:"string",noBlank:!0,strict:!0},style:{valType:"any",values:u.styleValuesMapbox.concat(u.styleValuesNonMapbox),dflt:u.styleValueDflt},center:{lon:{valType:"number",dflt:0},lat:{valType:"number",dflt:0}},zoom:{valType:"number",dflt:1},bearing:{valType:"number",dflt:0},pitch:{valType:"number",dflt:0},layers:c("layer",{visible:{valType:"boolean",dflt:!0},sourcetype:{valType:"enumerated",values:["geojson","vector","raster","image"],dflt:"geojson"},source:{valType:"any"},sourcelayer:{valType:"string",dflt:""},sourceattribution:{valType:"string"},type:{valType:"enumerated",values:["circle","line","fill","symbol","raster"],dflt:"circle"},coordinates:{valType:"any"},below:{valType:"string"},color:{valType:"color",dflt:i},opacity:{valType:"number",min:0,max:1,dflt:1},minzoom:{valType:"number",min:0,max:24,dflt:0},maxzoom:{valType:"number",min:0,max:24,dflt:24},circle:{radius:{valType:"number",dflt:15}},line:{width:{valType:"number",dflt:2},dash:{valType:"data_array"}},fill:{outlinecolor:{valType:"color",dflt:i}},symbol:{icon:{valType:"string",dflt:"marker"},iconsize:{valType:"number",dflt:10},text:{valType:"string",dflt:""},placement:{valType:"enumerated",values:["point","line","line-center"],dflt:"point"},textfont:f,textposition:n.extendFlat({},s,{arrayOk:!1})}})},"plot","from-root")).uirevision={valType:"any",editType:"none"}},{"../../components/color":643,"../../lib":778,"../../plot_api/edit_types":810,"../../plot_api/plot_template":817,"../../traces/scatter/attributes":1187,"../domain":855,"../font_attributes":856,"./constants":883}],888:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../subplot_defaults"),a=t("../array_container_defaults"),o=t("./layout_attributes");function s(t,e,r,n){r("accesstoken",n.accessToken),r("style"),r("center.lon"),r("center.lat"),r("zoom"),r("bearing"),r("pitch"),a(t,e,{name:"layers",handleItemDefaults:l}),e._input=t}function l(t,e){function r(r,i){return n.coerce(t,e,o.layers,r,i)}if(r("visible")){var i,a=r("sourcetype"),s="raster"===a||"image"===a;r("source"),r("sourceattribution"),"vector"===a&&r("sourcelayer"),"image"===a&&r("coordinates"),s&&(i="raster");var l=r("type",i);s&&"raster"!==l&&(l=e.type="raster",n.log("Source types *raster* and *image* must drawn *raster* layer type.")),r("below"),r("color"),r("opacity"),r("minzoom"),r("maxzoom"),"circle"===l&&r("circle.radius"),"line"===l&&(r("line.width"),r("line.dash")),"fill"===l&&r("fill.outlinecolor"),"symbol"===l&&(r("symbol.icon"),r("symbol.iconsize"),r("symbol.text"),n.coerceFont(r,"symbol.textfont"),r("symbol.textposition"),r("symbol.placement"))}}e.exports=function(t,e,r){i(t,e,r,{type:"mapbox",attributes:o,handleDefaults:s,partition:"y",accessToken:e._mapboxAccessToken})}},{"../../lib":778,"../array_container_defaults":823,"../subplot_defaults":905,"./layout_attributes":887}],889:[function(t,e,r){"use strict";var n=t("mapbox-gl"),i=t("../../lib"),a=t("../../lib/geo_location_utils"),o=t("../../registry"),s=t("../cartesian/axes"),l=t("../../components/dragelement"),c=t("../../components/fx"),u=t("../../components/dragelement/helpers"),f=u.rectMode,h=u.drawMode,p=u.selectMode,d=t("../cartesian/select").prepSelect,g=t("../cartesian/select").clearSelect,m=t("../cartesian/select").clearSelectionsCache,v=t("../cartesian/select").selectOnClick,y=t("./constants"),x=t("./layers");function b(t,e){this.id=e,this.gd=t;var r=t._fullLayout,n=t._context;this.container=r._glcontainer.node(),this.isStatic=n.staticPlot,this.uid=r._uid+"-"+this.id,this.div=null,this.xaxis=null,this.yaxis=null,this.createFramework(r),this.map=null,this.accessToken=null,this.styleObj=null,this.traceHash={},this.layerList=[],this.belowLookup={},this.dragging=!1,this.wheeling=!1}var _=b.prototype;_.plot=function(t,e,r){var n,i=this,a=e[i.id];i.map&&a.accesstoken!==i.accessToken&&(i.map.remove(),i.map=null,i.styleObj=null,i.traceHash={},i.layerList=[]),n=i.map?new Promise((function(r,n){i.updateMap(t,e,r,n)})):new Promise((function(r,n){i.createMap(t,e,r,n)})),r.push(n)},_.createMap=function(t,e,r,i){var o=this,s=e[o.id],l=o.styleObj=T(s.style);o.accessToken=s.accesstoken;var c=o.map=new n.Map({container:o.div,style:l.style,center:M(s.center),zoom:s.zoom,bearing:s.bearing,pitch:s.pitch,interactive:!o.isStatic,preserveDrawingBuffer:o.isStatic,doubleClickZoom:!1,boxZoom:!1,attributionControl:!1}).addControl(new n.AttributionControl({compact:!0}));c._canvas.style.left="0px",c._canvas.style.top="0px",o.rejectOnError(i),o.isStatic||o.initFx(t,e);var u=[];u.push(new Promise((function(t){c.once("load",t)}))),u=u.concat(a.fetchTraceGeoData(t)),Promise.all(u).then((function(){o.fillBelowLookup(t,e),o.updateData(t),o.updateLayout(e),o.resolveOnRender(r)})).catch(i)},_.updateMap=function(t,e,r,n){var i=this,o=i.map,s=e[this.id];i.rejectOnError(n);var l=[],c=T(s.style);JSON.stringify(i.styleObj)!==JSON.stringify(c)&&(i.styleObj=c,o.setStyle(c.style),i.traceHash={},l.push(new Promise((function(t){o.once("styledata",t)})))),l=l.concat(a.fetchTraceGeoData(t)),Promise.all(l).then((function(){i.fillBelowLookup(t,e),i.updateData(t),i.updateLayout(e),i.resolveOnRender(r)})).catch(n)},_.fillBelowLookup=function(t,e){var r,n,i=e[this.id].layers,a=this.belowLookup={},o=!1;for(r=0;r<t.length;r++){var s=t[r][0].trace,l=s._module;"string"==typeof s.below?n=s.below:l.getBelow&&(n=l.getBelow(s,this)),""===n&&(o=!0),a["trace-"+s.uid]=n||""}for(r=0;r<i.length;r++){var c=i[r];n="string"==typeof c.below?c.below:o?"traces":"",a["layout-"+r]=n}var u,f,h={};for(u in a)h[n=a[u]]?h[n].push(u):h[n]=[u];for(n in h){var p=h[n];if(p.length>1)for(r=0;r-1&&v(e.originalEvent,n,[r.xaxis],[r.yaxis],r.id,t),i.indexOf("event")>-1&&c.click(n,e.originalEvent)}}},_.updateFx=function(t){var e=this,r=e.map,n=e.gd;if(!e.isStatic){var a,o=t.dragmode;a=f(o)?function(t,r){(t.range={})[e.id]=[c([r.xmin,r.ymin]),c([r.xmax,r.ymax])]}:function(t,r,n){(t.lassoPoints={})[e.id]=n.filtered.map(c)};var s=e.dragOptions;e.dragOptions=i.extendDeep(s||{},{dragmode:t.dragmode,element:e.div,gd:n,plotinfo:{id:e.id,domain:t[e.id].domain,xaxis:e.xaxis,yaxis:e.yaxis,fillRangeItems:a},xaxes:[e.xaxis],yaxes:[e.yaxis],subplot:e.id}),r.off("click",e.onClickInPanHandler),p(o)||h(o)?(r.dragPan.disable(),r.on("zoomstart",e.clearSelect),e.dragOptions.prepFn=function(t,r,n){d(t,r,n,e.dragOptions,o)},l.init(e.dragOptions)):(r.dragPan.enable(),r.off("zoomstart",e.clearSelect),e.div.onmousedown=null,e.onClickInPanHandler=e.onClickInPanFn(e.dragOptions),r.on("click",e.onClickInPanHandler))}function c(t){var r=e.map.unproject(t);return[r.lng,r.lat]}},_.updateFramework=function(t){var e=t[this.id].domain,r=t._size,n=this.div.style;n.width=r.w*(e.x[1]-e.x[0])+"px",n.height=r.h*(e.y[1]-e.y[0])+"px",n.left=r.l+e.x[0]*r.w+"px",n.top=r.t+(1-e.y[1])*r.h+"px",this.xaxis._offset=r.l+e.x[0]*r.w,this.xaxis._length=r.w*(e.x[1]-e.x[0]),this.yaxis._offset=r.t+(1-e.y[1])*r.h,this.yaxis._length=r.h*(e.y[1]-e.y[0])},_.updateLayers=function(t){var e,r=t[this.id].layers,n=this.layerList;if(r.length!==n.length){for(e=0;e=e.width-20?(a["text-anchor"]="start",a.x=5):(a["text-anchor"]="end",a.x=e._paper.attr("width")-7),r.attr(a);var o=r.select(".js-link-to-tool"),s=r.select(".js-link-spacer"),l=r.select(".js-sourcelinks");t._context.showSources&&t._context.showSources(t),t._context.showLink&&function(t,e){e.text("");var r=e.append("a").attr({"xlink:xlink:href":"#",class:"link--impt link--embedview","font-weight":"bold"}).text(t._context.linkText+" "+String.fromCharCode(187));if(t._context.sendData)r.on("click",(function(){x.sendDataToCloud(t)}));else{var n=window.location.pathname.split("/"),i=window.location.search;r.attr({"xlink:xlink:show":"new","xlink:xlink:href":"/"+n[2].split(".")[0]+"/"+n[1]+i})}}(t,o),s.text(o.text()&&l.text()?" - ":"")}},x.sendDataToCloud=function(t){var e=(window.PLOTLYENV||{}).BASE_URL||t._context.plotlyServerURL;if(e){t.emit("plotly_beforeexport");var r=n.select(t).append("div").attr("id","hiddenform").style("display","none"),i=r.append("form").attr({action:e+"/external",method:"post",target:"_blank"});return i.append("input").attr({type:"text",name:"data"}).node().value=x.graphJson(t,!1,"keepdata"),i.node().submit(),r.remove(),t.emit("plotly_afterexport"),!1}};var w=["days","shortDays","months","shortMonths","periods","dateTime","date","time","decimal","thousands","grouping","currency"],T=["year","month","dayMonth","dayMonthYear"];function k(t,e){var r=t._context.locale;r||(r="en-US");var n=!1,i={};function a(t){for(var r=!0,a=0;a1&&O.length>1){for(o.getComponentMethod("grid","sizeDefaults")(u,l),s=0;s15&&O.length>15&&0===l.shapes.length&&0===l.images.length,l._hasCartesian=l._has("cartesian"),l._hasGeo=l._has("geo"),l._hasGL3D=l._has("gl3d"),l._hasGL2D=l._has("gl2d"),l._hasTernary=l._has("ternary"),l._hasPie=l._has("pie"),x.linkSubplots(h,l,f,a),x.cleanPlot(h,l,f,a);var N=!(!a._has||!a._has("gl2d")),j=!(!l._has||!l._has("gl2d")),U=!(!a._has||!a._has("cartesian"))||N,V=!(!l._has||!l._has("cartesian"))||j;U&&!V?a._bgLayer.remove():V&&!U&&(l._shouldCreateBgLayer=!0),a._zoomlayer&&!t._dragging&&p({_fullLayout:a}),function(t,e){var r,n=[];e.meta&&(r=e._meta={meta:e.meta,layout:{meta:e.meta}});for(var i=0;i0){var f=1-2*s;n=Math.round(f*n),i=Math.round(f*i)}}var h=x.layoutAttributes.width.min,p=x.layoutAttributes.height.min;n1,g=!e.height&&Math.abs(r.height-i)>1;(g||d)&&(d&&(r.width=n),g&&(r.height=i)),t._initialAutoSize||(t._initialAutoSize={width:n,height:i}),x.sanitizeMargins(r)},x.supplyLayoutModuleDefaults=function(t,e,r,n){var i,a,s,l=o.componentsRegistry,u=e._basePlotModules,f=o.subplotsRegistry.cartesian;for(i in l)(s=l[i]).includeBasePlot&&s.includeBasePlot(t,e);for(var h in u.length||u.push(f),e._has("cartesian")&&(o.getComponentMethod("grid","contentDefaults")(t,e),f.finalizeSubplots(t,e)),e._subplots)e._subplots[h].sort(c.subplotSort);for(a=0;a1&&(r.l/=g,r.r/=g)}if(f){var m=(r.t+r.b)/f;m>1&&(r.t/=m,r.b/=m)}var v=void 0!==r.xl?r.xl:r.x,y=void 0!==r.xr?r.xr:r.x,b=void 0!==r.yt?r.yt:r.y,_=void 0!==r.yb?r.yb:r.y;h[e]={l:{val:v,size:r.l+d},r:{val:y,size:r.r+d},b:{val:_,size:r.b+d},t:{val:b,size:r.t+d}},p[e]=1}else delete h[e],delete p[e];if(!n._replotting)return x.doAutoMargin(t)}},x.doAutoMargin=function(t){var e=t._fullLayout,r=e.width,n=e.height;e._size||(e._size={}),C(e);var i=e._size,s=e.margin,l=c.extendFlat({},i),u=s.l,f=s.r,p=s.t,d=s.b,g=e._pushmargin,m=e._pushmarginIds;if(!1!==e.margin.autoexpand){for(var v in g)m[v]||delete g[v];for(var y in g.base={l:{val:0,size:u},r:{val:1,size:f},t:{val:1,size:p},b:{val:0,size:d}},g){var b=g[y].l||{},_=g[y].b||{},w=b.val,T=b.size,k=_.val,M=_.size;for(var A in g){if(a(T)&&g[A].r){var S=g[A].r.val,E=g[A].r.size;if(S>w){var L=(T*S+(E-r)*w)/(S-w),I=(E*(1-w)+(T-r)*(1-S))/(S-w);L+I>u+f&&(u=L,f=I)}}if(a(M)&&g[A].t){var P=g[A].t.val,z=g[A].t.size;if(P>k){var O=(M*P+(z-n)*k)/(P-k),D=(z*(1-k)+(M-n)*(1-P))/(P-k);O+D>d+p&&(d=O,p=D)}}}}}var R=c.constrain(r-s.l-s.r,2,64),F=c.constrain(n-s.t-s.b,2,64),B=Math.max(0,r-R),N=Math.max(0,n-F);if(B){var j=(u+f)/B;j>1&&(u/=j,f/=j)}if(N){var U=(d+p)/N;U>1&&(d/=U,p/=U)}if(i.l=Math.round(u),i.r=Math.round(f),i.t=Math.round(p),i.b=Math.round(d),i.p=Math.round(s.pad),i.w=Math.round(r)-i.l-i.r,i.h=Math.round(n)-i.t-i.b,!e._replotting&&x.didMarginChange(l,i)){"_redrawFromAutoMarginCount"in e?e._redrawFromAutoMarginCount++:e._redrawFromAutoMarginCount=1;var V=3*(1+Object.keys(m).length);if(e._redrawFromAutoMarginCount0&&(t._transitioningWithDuration=!0),t._transitionData._interruptCallbacks.push((function(){n=!0})),r.redraw&&t._transitionData._interruptCallbacks.push((function(){return o.call("redraw",t)})),t._transitionData._interruptCallbacks.push((function(){t.emit("plotly_transitioninterrupted",[])}));var a=0,s=0;function l(){return a++,function(){s++,n||s!==a||function(e){if(!t._transitionData)return;(function(t){if(t)for(;t.length;)t.shift()})(t._transitionData._interruptCallbacks),Promise.resolve().then((function(){if(r.redraw)return o.call("redraw",t)})).then((function(){t._transitioning=!1,t._transitioningWithDuration=!1,t.emit("plotly_transitioned",[])})).then(e)}(i)}}r.runFn(l),setTimeout(l())}))}],a=c.syncOrAsync(i,t);return a&&a.then||(a=Promise.resolve()),a.then((function(){return t}))}x.didMarginChange=function(t,e){for(var r=0;r1)return!0}return!1},x.graphJson=function(t,e,r,n,i,a){(i&&e&&!t._fullData||i&&!e&&!t._fullLayout)&&x.supplyDefaults(t);var o=i?t._fullData:t.data,s=i?t._fullLayout:t.layout,l=(t._transitionData||{})._frames;function u(t,e){if("function"==typeof t)return e?"_function_":null;if(c.isPlainObject(t)){var n,i={};return Object.keys(t).sort().forEach((function(a){if(-1===["_","["].indexOf(a.charAt(0)))if("function"!=typeof t[a]){if("keepdata"===r){if("src"===a.substr(a.length-3))return}else if("keepstream"===r){if("string"==typeof(n=t[a+"src"])&&n.indexOf(":")>0&&!c.isPlainObject(t.stream))return}else if("keepall"!==r&&"string"==typeof(n=t[a+"src"])&&n.indexOf(":")>0)return;i[a]=u(t[a],e)}else e&&(i[a]="_function")})),i}return Array.isArray(t)?t.map((function(t){return u(t,e)})):c.isTypedArray(t)?c.simpleMap(t,c.identity):c.isJSDate(t)?c.ms2DateTimeLocal(+t):t}var f={data:(o||[]).map((function(t){var r=u(t);return e&&delete r.fit,r}))};if(!e&&(f.layout=u(s),i)){var h=s._size;f.layout.computed={margin:{b:h.b,l:h.l,r:h.r,t:h.t}}}return t.framework&&t.framework.isPolar&&(f=t.framework.getConfig()),l&&(f.frames=u(l)),a&&(f.config=u(t._context,!0)),"object"===n?f:JSON.stringify(f)},x.modifyFrames=function(t,e){var r,n,i,a=t._transitionData._frames,o=t._transitionData._frameHash;for(r=0;r=0;a--)if(s[a].enabled){r._indexToPoints=s[a]._indexToPoints;break}n&&n.calc&&(o=n.calc(t,r))}Array.isArray(o)&&o[0]||(o=[{x:f,y:f}]),o[0].t||(o[0].t={}),o[0].trace=r,d[e]=o}}for(z(l,u,p),i=0;i1e-10?t:0}function h(t,e,r){e=e||0,r=r||0;for(var n=t.length,i=new Array(n),a=0;a0?r:1/0})),i=n.mod(r+1,e.length);return[e[r],e[i]]},findIntersectionXY:c,findXYatLength:function(t,e,r,n){var i=-e*r,a=e*e+1,o=2*(e*i-r),s=i*i+r*r-t*t,l=Math.sqrt(o*o-4*a*s),c=(-o+l)/(2*a),u=(-o-l)/(2*a);return[[c,e*c+i+n],[u,e*u+i+n]]},clampTiny:f,pathPolygon:function(t,e,r,n,i,a){return"M"+h(u(t,e,r,n),i,a).join("L")},pathPolygonAnnulus:function(t,e,r,n,i,a,o){var s,l;t=0?h.angularAxis.domain:n.extent(T),E=Math.abs(T[1]-T[0]);M&&!k&&(E=0);var C=S.slice();A&&k&&(C[1]+=E);var L=h.angularAxis.ticksCount||4;L>8&&(L=L/(L/8)+L%8),h.angularAxis.ticksStep&&(L=(C[1]-C[0])/L);var I=h.angularAxis.ticksStep||(C[1]-C[0])/(L*(h.minorTicks+1));w&&(I=Math.max(Math.round(I),1)),C[2]||(C[2]=I);var P=n.range.apply(this,C);if(P=P.map((function(t,e){return parseFloat(t.toPrecision(12))})),s=n.scale.linear().domain(C.slice(0,2)).range("clockwise"===h.direction?[0,360]:[360,0]),u.layout.angularAxis.domain=s.domain(),u.layout.angularAxis.endPadding=A?E:0,"undefined"==typeof(t=n.select(this).select("svg.chart-root"))||t.empty()){var z=(new DOMParser).parseFromString("' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '","application/xml"),O=this.appendChild(this.ownerDocument.importNode(z.documentElement,!0));t=n.select(O)}t.select(".guides-group").style({"pointer-events":"none"}),t.select(".angular.axis-group").style({"pointer-events":"none"}),t.select(".radial.axis-group").style({"pointer-events":"none"});var D,R=t.select(".chart-group"),F={fill:"none",stroke:h.tickColor},B={"font-size":h.font.size,"font-family":h.font.family,fill:h.font.color,"text-shadow":["-1px 0px","1px -1px","-1px 1px","1px 1px"].map((function(t,e){return" "+t+" 0 "+h.font.outlineColor})).join(",")};if(h.showLegend){D=t.select(".legend-group").attr({transform:"translate("+[x,h.margin.top]+")"}).style({display:"block"});var N=p.map((function(t,e){var r=o.util.cloneJson(t);return r.symbol="DotPlot"===t.geometry?t.dotType||"circle":"LinePlot"!=t.geometry?"square":"line",r.visibleInLegend="undefined"==typeof t.visibleInLegend||t.visibleInLegend,r.color="LinePlot"===t.geometry?t.strokeColor:t.color,r}));o.Legend().config({data:p.map((function(t,e){return t.name||"Element"+e})),legendConfig:i({},o.Legend.defaultConfig().legendConfig,{container:D,elements:N,reverseOrder:h.legend.reverseOrder})})();var j=D.node().getBBox();x=Math.min(h.width-j.width-h.margin.left-h.margin.right,h.height-h.margin.top-h.margin.bottom)/2,x=Math.max(10,x),_=[h.margin.left+x,h.margin.top+x],r.range([0,x]),u.layout.radialAxis.domain=r.domain(),D.attr("transform","translate("+[_[0]+x,_[1]-x]+")")}else D=t.select(".legend-group").style({display:"none"});t.attr({width:h.width,height:h.height}).style({opacity:h.opacity}),R.attr("transform","translate("+_+")").style({cursor:"crosshair"});var U=[(h.width-(h.margin.left+h.margin.right+2*x+(j?j.width:0)))/2,(h.height-(h.margin.top+h.margin.bottom+2*x))/2];if(U[0]=Math.max(0,U[0]),U[1]=Math.max(0,U[1]),t.select(".outer-group").attr("transform","translate("+U+")"),h.title&&h.title.text){var V=t.select("g.title-group text").style(B).text(h.title.text),q=V.node().getBBox();V.attr({x:_[0]-q.width/2,y:_[1]-x-20})}var H=t.select(".radial.axis-group");if(h.radialAxis.gridLinesVisible){var G=H.selectAll("circle.grid-circle").data(r.ticks(5));G.enter().append("circle").attr({class:"grid-circle"}).style(F),G.attr("r",r),G.exit().remove()}H.select("circle.outside-circle").attr({r:x}).style(F);var Y=t.select("circle.background-circle").attr({r:x}).style({fill:h.backgroundColor,stroke:h.stroke});function W(t,e){return s(t)%360+h.orientation}if(h.radialAxis.visible){var X=n.svg.axis().scale(r).ticks(5).tickSize(5);H.call(X).attr({transform:"rotate("+h.radialAxis.orientation+")"}),H.selectAll(".domain").style(F),H.selectAll("g>text").text((function(t,e){return this.textContent+h.radialAxis.ticksSuffix})).style(B).style({"text-anchor":"start"}).attr({x:0,y:0,dx:0,dy:0,transform:function(t,e){return"horizontal"===h.radialAxis.tickOrientation?"rotate("+-h.radialAxis.orientation+") translate("+[0,B["font-size"]]+")":"translate("+[0,B["font-size"]]+")"}}),H.selectAll("g>line").style({stroke:"black"})}var Z=t.select(".angular.axis-group").selectAll("g.angular-tick").data(P),J=Z.enter().append("g").classed("angular-tick",!0);Z.attr({transform:function(t,e){return"rotate("+W(t)+")"}}).style({display:h.angularAxis.visible?"block":"none"}),Z.exit().remove(),J.append("line").classed("grid-line",!0).classed("major",(function(t,e){return e%(h.minorTicks+1)==0})).classed("minor",(function(t,e){return!(e%(h.minorTicks+1)==0)})).style(F),J.selectAll(".minor").style({stroke:h.minorTickColor}),Z.select("line.grid-line").attr({x1:h.tickLength?x-h.tickLength:0,x2:x}).style({display:h.angularAxis.gridLinesVisible?"block":"none"}),J.append("text").classed("axis-text",!0).style(B);var K=Z.select("text.axis-text").attr({x:x+h.labelOffset,dy:a+"em",transform:function(t,e){var r=W(t),n=x+h.labelOffset,i=h.angularAxis.tickOrientation;return"horizontal"==i?"rotate("+-r+" "+n+" 0)":"radial"==i?r<270&&r>90?"rotate(180 "+n+" 0)":null:"rotate("+(r<=180&&r>0?-90:90)+" "+n+" 0)"}}).style({"text-anchor":"middle",display:h.angularAxis.labelsVisible?"block":"none"}).text((function(t,e){return e%(h.minorTicks+1)!=0?"":w?w[t]+h.angularAxis.ticksSuffix:t+h.angularAxis.ticksSuffix})).style(B);h.angularAxis.rewriteTicks&&K.text((function(t,e){return e%(h.minorTicks+1)!=0?"":h.angularAxis.rewriteTicks(this.textContent,e)}));var Q=n.max(R.selectAll(".angular-tick text")[0].map((function(t,e){return t.getCTM().e+t.getBBox().width})));D.attr({transform:"translate("+[x+Q,h.margin.top]+")"});var $=t.select("g.geometry-group").selectAll("g").size()>0,tt=t.select("g.geometry-group").selectAll("g.geometry").data(p);if(tt.enter().append("g").attr({class:function(t,e){return"geometry geometry"+e}}),tt.exit().remove(),p[0]||$){var et=[];p.forEach((function(t,e){var n={};n.radialScale=r,n.angularScale=s,n.container=tt.filter((function(t,r){return r==e})),n.geometry=t.geometry,n.orientation=h.orientation,n.direction=h.direction,n.index=e,et.push({data:t,geometryConfig:n})}));var rt=n.nest().key((function(t,e){return"undefined"!=typeof t.data.groupId||"unstacked"})).entries(et),nt=[];rt.forEach((function(t,e){"unstacked"===t.key?nt=nt.concat(t.values.map((function(t,e){return[t]}))):nt.push(t.values)})),nt.forEach((function(t,e){var r;r=Array.isArray(t)?t[0].geometryConfig.geometry:t.geometryConfig.geometry;var n=t.map((function(t,e){return i(o[r].defaultConfig(),t)}));o[r]().config(n)()}))}var it,at,ot=t.select(".guides-group"),st=t.select(".tooltips-group"),lt=o.tooltipPanel().config({container:st,fontSize:8})(),ct=o.tooltipPanel().config({container:st,fontSize:8})(),ut=o.tooltipPanel().config({container:st,hasTick:!0})();if(!k){var ft=ot.select("line").attr({x1:0,y1:0,y2:0}).style({stroke:"grey","pointer-events":"none"});R.on("mousemove.angular-guide",(function(t,e){var r=o.util.getMousePos(Y).angle;ft.attr({x2:-x,transform:"rotate("+r+")"}).style({opacity:.5});var n=(r+180+360-h.orientation)%360;it=s.invert(n);var i=o.util.convertToCartesian(x+12,r+180);lt.text(o.util.round(it)).move([i[0]+_[0],i[1]+_[1]])})).on("mouseout.angular-guide",(function(t,e){ot.select("line").style({opacity:0})}))}var ht=ot.select("circle").style({stroke:"grey",fill:"none"});R.on("mousemove.radial-guide",(function(t,e){var n=o.util.getMousePos(Y).radius;ht.attr({r:n}).style({opacity:.5}),at=r.invert(o.util.getMousePos(Y).radius);var i=o.util.convertToCartesian(n,h.radialAxis.orientation);ct.text(o.util.round(at)).move([i[0]+_[0],i[1]+_[1]])})).on("mouseout.radial-guide",(function(t,e){ht.style({opacity:0}),ut.hide(),lt.hide(),ct.hide()})),t.selectAll(".geometry-group .mark").on("mouseover.tooltip",(function(e,r){var i=n.select(this),a=this.style.fill,s="black",l=this.style.opacity||1;if(i.attr({"data-opacity":l}),a&&"none"!==a){i.attr({"data-fill":a}),s=n.hsl(a).darker().toString(),i.style({fill:s,opacity:1});var c={t:o.util.round(e[0]),r:o.util.round(e[1])};k&&(c.t=w[e[0]]);var u="t: "+c.t+", r: "+c.r,f=this.getBoundingClientRect(),h=t.node().getBoundingClientRect(),p=[f.left+f.width/2-U[0]-h.left,f.top+f.height/2-U[1]-h.top];ut.config({color:s}).text(u),ut.move(p)}else a=this.style.stroke||"black",i.attr({"data-stroke":a}),s=n.hsl(a).darker().toString(),i.style({stroke:s,opacity:1})})).on("mousemove.tooltip",(function(t,e){if(0!=n.event.which)return!1;n.select(this).attr("data-fill")&&ut.show()})).on("mouseout.tooltip",(function(t,e){ut.hide();var r=n.select(this),i=r.attr("data-fill");i?r.style({fill:i,opacity:r.attr("data-opacity")}):r.style({stroke:r.attr("data-stroke"),opacity:r.attr("data-opacity")})}))}))}(c),this},h.config=function(t){if(!arguments.length)return l;var e=o.util.cloneJson(t);return e.data.forEach((function(t,e){l.data[e]||(l.data[e]={}),i(l.data[e],o.Axis.defaultConfig().data[0]),i(l.data[e],t)})),i(l.layout,o.Axis.defaultConfig().layout),i(l.layout,e.layout),this},h.getLiveConfig=function(){return u},h.getinputConfig=function(){return c},h.radialScale=function(t){return r},h.angularScale=function(t){return s},h.svg=function(){return t},n.rebind(h,f,"on"),h},o.Axis.defaultConfig=function(t,e){return{data:[{t:[1,2,3,4],r:[10,11,12,13],name:"Line1",geometry:"LinePlot",color:null,strokeDash:"solid",strokeColor:null,strokeSize:"1",visibleInLegend:!0,opacity:1}],layout:{defaultColorRange:n.scale.category10().range(),title:null,height:450,width:500,margin:{top:40,right:40,bottom:40,left:40},font:{size:12,color:"gray",outlineColor:"white",family:"Tahoma, sans-serif"},direction:"clockwise",orientation:0,labelOffset:10,radialAxis:{domain:null,orientation:-45,ticksSuffix:"",visible:!0,gridLinesVisible:!0,tickOrientation:"horizontal",rewriteTicks:null},angularAxis:{domain:[0,360],ticksSuffix:"",visible:!0,gridLinesVisible:!0,labelsVisible:!0,tickOrientation:"horizontal",rewriteTicks:null,ticksCount:null,ticksStep:null},minorTicks:0,tickLength:null,tickColor:"silver",minorTickColor:"#eee",backgroundColor:"none",needsEndSpacing:null,showLegend:!0,legend:{reverseOrder:!1},opacity:1}}},o.util={},o.DATAEXTENT="dataExtent",o.AREA="AreaChart",o.LINE="LinePlot",o.DOT="DotPlot",o.BAR="BarChart",o.util._override=function(t,e){for(var r in t)r in e&&(e[r]=t[r])},o.util._extend=function(t,e){for(var r in t)e[r]=t[r]},o.util._rndSnd=function(){return 2*Math.random()-1+(2*Math.random()-1)+(2*Math.random()-1)},o.util.dataFromEquation2=function(t,e){var r=e||6;return n.range(0,360+r,r).map((function(e,r){var n=e*Math.PI/180;return[e,t(n)]}))},o.util.dataFromEquation=function(t,e,r){var i=e||6,a=[],o=[];n.range(0,360+i,i).forEach((function(e,r){var n=e*Math.PI/180,i=t(n);a.push(e),o.push(i)}));var s={t:a,r:o};return r&&(s.name=r),s},o.util.ensureArray=function(t,e){if("undefined"==typeof t)return null;var r=[].concat(t);return n.range(e).map((function(t,e){return r[e]||r[0]}))},o.util.fillArrays=function(t,e,r){return e.forEach((function(e,n){t[e]=o.util.ensureArray(t[e],r)})),t},o.util.cloneJson=function(t){return JSON.parse(JSON.stringify(t))},o.util.validateKeys=function(t,e){"string"==typeof e&&(e=e.split("."));var r=e.shift();return t[r]&&(!e.length||objHasKeys(t[r],e))},o.util.sumArrays=function(t,e){return n.zip(t,e).map((function(t,e){return n.sum(t)}))},o.util.arrayLast=function(t){return t[t.length-1]},o.util.arrayEqual=function(t,e){for(var r=Math.max(t.length,e.length,1);r-- >=0&&t[r]===e[r];);return-2===r},o.util.flattenArray=function(t){for(var e=[];!o.util.arrayEqual(e,t);)e=t,t=[].concat.apply([],t);return t},o.util.deduplicate=function(t){return t.filter((function(t,e,r){return r.indexOf(t)==e}))},o.util.convertToCartesian=function(t,e){var r=e*Math.PI/180;return[t*Math.cos(r),t*Math.sin(r)]},o.util.round=function(t,e){var r=e||2,n=Math.pow(10,r);return Math.round(t*n)/n},o.util.getMousePos=function(t){var e=n.mouse(t.node()),r=e[0],i=e[1],a={};return a.x=r,a.y=i,a.pos=e,a.angle=180*(Math.atan2(i,r)+Math.PI)/Math.PI,a.radius=Math.sqrt(r*r+i*i),a},o.util.duplicatesCount=function(t){for(var e,r={},n={},i=0,a=t.length;i0)){var l=n.select(this.parentNode).selectAll("path.line").data([0]);l.enter().insert("path"),l.attr({class:"line",d:u(s),transform:function(t,r){return"rotate("+(e.orientation+90)+")"},"pointer-events":"none"}).style({fill:function(t,e){return d.fill(r,i,a)},"fill-opacity":0,stroke:function(t,e){return d.stroke(r,i,a)},"stroke-width":function(t,e){return d["stroke-width"](r,i,a)},"stroke-dasharray":function(t,e){return d["stroke-dasharray"](r,i,a)},opacity:function(t,e){return d.opacity(r,i,a)},display:function(t,e){return d.display(r,i,a)}})}};var f=e.angularScale.range(),h=Math.abs(f[1]-f[0])/o[0].length*Math.PI/180,p=n.svg.arc().startAngle((function(t){return-h/2})).endAngle((function(t){return h/2})).innerRadius((function(t){return e.radialScale(l+(t[2]||0))})).outerRadius((function(t){return e.radialScale(l+(t[2]||0))+e.radialScale(t[1])}));c.arc=function(t,r,i){n.select(this).attr({class:"mark arc",d:p,transform:function(t,r){return"rotate("+(e.orientation+s(t[0])+90)+")"}})};var d={fill:function(e,r,n){return t[n].data.color},stroke:function(e,r,n){return t[n].data.strokeColor},"stroke-width":function(e,r,n){return t[n].data.strokeSize+"px"},"stroke-dasharray":function(e,n,i){return r[t[i].data.strokeDash]},opacity:function(e,r,n){return t[n].data.opacity},display:function(e,r,n){return"undefined"==typeof t[n].data.visible||t[n].data.visible?"block":"none"}},g=n.select(this).selectAll("g.layer").data(o);g.enter().append("g").attr({class:"layer"});var m=g.selectAll("path.mark").data((function(t,e){return t}));m.enter().append("path").attr({class:"mark"}),m.style(d).each(c[e.geometryType]),m.exit().remove(),g.exit().remove()}))}return a.config=function(e){return arguments.length?(e.forEach((function(e,r){t[r]||(t[r]={}),i(t[r],o.PolyChart.defaultConfig()),i(t[r],e)})),this):t},a.getColorScale=function(){},n.rebind(a,e,"on"),a},o.PolyChart.defaultConfig=function(){return{data:{name:"geom1",t:[[1,2,3,4]],r:[[1,2,3,4]],dotType:"circle",dotSize:64,dotVisible:!1,barWidth:20,color:"#ffa500",strokeSize:1,strokeColor:"silver",strokeDash:"solid",opacity:1,index:0,visible:!0,visibleInLegend:!0},geometryConfig:{geometry:"LinePlot",geometryType:"arc",direction:"clockwise",orientation:0,container:"body",radialScale:null,angularScale:null,colorScale:n.scale.category20()}}},o.BarChart=function(){return o.PolyChart()},o.BarChart.defaultConfig=function(){return{geometryConfig:{geometryType:"bar"}}},o.AreaChart=function(){return o.PolyChart()},o.AreaChart.defaultConfig=function(){return{geometryConfig:{geometryType:"arc"}}},o.DotPlot=function(){return o.PolyChart()},o.DotPlot.defaultConfig=function(){return{geometryConfig:{geometryType:"dot",dotType:"circle"}}},o.LinePlot=function(){return o.PolyChart()},o.LinePlot.defaultConfig=function(){return{geometryConfig:{geometryType:"line"}}},o.Legend=function(){var t=o.Legend.defaultConfig(),e=n.dispatch("hover");function r(){var e=t.legendConfig,a=t.data.map((function(t,r){return[].concat(t).map((function(t,n){var a=i({},e.elements[r]);return a.name=t,a.color=[].concat(e.elements[r].color)[n],a}))})),o=n.merge(a);o=o.filter((function(t,r){return e.elements[r]&&(e.elements[r].visibleInLegend||"undefined"==typeof e.elements[r].visibleInLegend)})),e.reverseOrder&&(o=o.reverse());var s=e.container;("string"==typeof s||s.nodeName)&&(s=n.select(s));var l=o.map((function(t,e){return t.color})),c=e.fontSize,u=null==e.isContinuous?"number"==typeof o[0]:e.isContinuous,f=u?e.height:c*o.length,h=s.classed("legend-group",!0).selectAll("svg").data([0]),p=h.enter().append("svg").attr({width:300,height:f+c,xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",version:"1.1"});p.append("g").classed("legend-axis",!0),p.append("g").classed("legend-marks",!0);var d=n.range(o.length),g=n.scale[u?"linear":"ordinal"]().domain(d).range(l),m=n.scale[u?"linear":"ordinal"]().domain(d)[u?"range":"rangePoints"]([0,f]);if(u){var v=h.select(".legend-marks").append("defs").append("linearGradient").attr({id:"grad1",x1:"0%",y1:"0%",x2:"0%",y2:"100%"}).selectAll("stop").data(l);v.enter().append("stop"),v.attr({offset:function(t,e){return e/(l.length-1)*100+"%"}}).style({"stop-color":function(t,e){return t}}),h.append("rect").classed("legend-mark",!0).attr({height:e.height,width:e.colorBandWidth,fill:"url(#grad1)"})}else{var y=h.select(".legend-marks").selectAll("path.legend-mark").data(o);y.enter().append("path").classed("legend-mark",!0),y.attr({transform:function(t,e){return"translate("+[c/2,m(e)+c/2]+")"},d:function(t,e){var r,i,a,o=t.symbol;return a=3*(i=c),"line"===(r=o)?"M"+[[-i/2,-i/12],[i/2,-i/12],[i/2,i/12],[-i/2,i/12]]+"Z":-1!=n.svg.symbolTypes.indexOf(r)?n.svg.symbol().type(r).size(a)():n.svg.symbol().type("square").size(a)()},fill:function(t,e){return g(e)}}),y.exit().remove()}var x=n.svg.axis().scale(m).orient("right"),b=h.select("g.legend-axis").attr({transform:"translate("+[u?e.colorBandWidth:c,c/2]+")"}).call(x);return b.selectAll(".domain").style({fill:"none",stroke:"none"}),b.selectAll("line").style({fill:"none",stroke:u?e.textColor:"none"}),b.selectAll("text").style({fill:e.textColor,"font-size":e.fontSize}).text((function(t,e){return o[e].name})),r}return r.config=function(e){return arguments.length?(i(t,e),this):t},n.rebind(r,e,"on"),r},o.Legend.defaultConfig=function(t,e){return{data:["a","b","c"],legendConfig:{elements:[{symbol:"line",color:"red"},{symbol:"square",color:"yellow"},{symbol:"diamond",color:"limegreen"}],height:150,colorBandWidth:30,fontSize:12,container:"body",isContinuous:null,textColor:"grey",reverseOrder:!1}}},o.tooltipPanel=function(){var t,e,r,a={container:null,hasTick:!1,fontSize:12,color:"white",padding:5},s="tooltip-"+o.tooltipPanel.uid++,l=10,c=function(){var n=(t=a.container.selectAll("g."+s).data([0])).enter().append("g").classed(s,!0).style({"pointer-events":"none",display:"none"});return r=n.append("path").style({fill:"white","fill-opacity":.9}).attr({d:"M0 0"}),e=n.append("text").attr({dx:a.padding+l,dy:.3*+a.fontSize}),c};return c.text=function(i){var o=n.hsl(a.color).l,s=o>=.5?"#aaa":"white",u=o>=.5?"black":"white",f=i||"";e.style({fill:u,"font-size":a.fontSize+"px"}).text(f);var h=a.padding,p=e.node().getBBox(),d={fill:a.color,stroke:s,"stroke-width":"2px"},g=p.width+2*h+l,m=p.height+2*h;return r.attr({d:"M"+[[l,-m/2],[l,-m/4],[a.hasTick?0:l,0],[l,m/4],[l,m/2],[g,m/2],[g,-m/2]].join("L")+"Z"}).style(d),t.attr({transform:"translate("+[l,-m/2+2*h]+")"}),t.style({display:"block"}),c},c.move=function(e){if(t)return t.attr({transform:"translate("+[e[0],e[1]]+")"}).style({display:"block"}),c},c.hide=function(){if(t)return t.style({display:"none"}),c},c.show=function(){if(t)return t.style({display:"block"}),c},c.config=function(t){return i(a,t),c},c},o.tooltipPanel.uid=1,o.adapter={},o.adapter.plotly=function(){var t={convert:function(t,e){var r={};if(t.data&&(r.data=t.data.map((function(t,r){var n=i({},t);return[[n,["marker","color"],["color"]],[n,["marker","opacity"],["opacity"]],[n,["marker","line","color"],["strokeColor"]],[n,["marker","line","dash"],["strokeDash"]],[n,["marker","line","width"],["strokeSize"]],[n,["marker","symbol"],["dotType"]],[n,["marker","size"],["dotSize"]],[n,["marker","barWidth"],["barWidth"]],[n,["line","interpolation"],["lineInterpolation"]],[n,["showlegend"],["visibleInLegend"]]].forEach((function(t,r){o.util.translator.apply(null,t.concat(e))})),e||delete n.marker,e&&delete n.groupId,e?("LinePlot"===n.geometry?(n.type="scatter",!0===n.dotVisible?(delete n.dotVisible,n.mode="lines+markers"):n.mode="lines"):"DotPlot"===n.geometry?(n.type="scatter",n.mode="markers"):"AreaChart"===n.geometry?n.type="area":"BarChart"===n.geometry&&(n.type="bar"),delete n.geometry):("scatter"===n.type?"lines"===n.mode?n.geometry="LinePlot":"markers"===n.mode?n.geometry="DotPlot":"lines+markers"===n.mode&&(n.geometry="LinePlot",n.dotVisible=!0):"area"===n.type?n.geometry="AreaChart":"bar"===n.type&&(n.geometry="BarChart"),delete n.mode,delete n.type),n})),!e&&t.layout&&"stack"===t.layout.barmode)){var a=o.util.duplicates(r.data.map((function(t,e){return t.geometry})));r.data.forEach((function(t,e){var n=a.indexOf(t.geometry);-1!=n&&(r.data[e].groupId=n)}))}if(t.layout){var s=i({},t.layout);if([[s,["plot_bgcolor"],["backgroundColor"]],[s,["showlegend"],["showLegend"]],[s,["radialaxis"],["radialAxis"]],[s,["angularaxis"],["angularAxis"]],[s.angularaxis,["showline"],["gridLinesVisible"]],[s.angularaxis,["showticklabels"],["labelsVisible"]],[s.angularaxis,["nticks"],["ticksCount"]],[s.angularaxis,["tickorientation"],["tickOrientation"]],[s.angularaxis,["ticksuffix"],["ticksSuffix"]],[s.angularaxis,["range"],["domain"]],[s.angularaxis,["endpadding"],["endPadding"]],[s.radialaxis,["showline"],["gridLinesVisible"]],[s.radialaxis,["tickorientation"],["tickOrientation"]],[s.radialaxis,["ticksuffix"],["ticksSuffix"]],[s.radialaxis,["range"],["domain"]],[s.angularAxis,["showline"],["gridLinesVisible"]],[s.angularAxis,["showticklabels"],["labelsVisible"]],[s.angularAxis,["nticks"],["ticksCount"]],[s.angularAxis,["tickorientation"],["tickOrientation"]],[s.angularAxis,["ticksuffix"],["ticksSuffix"]],[s.angularAxis,["range"],["domain"]],[s.angularAxis,["endpadding"],["endPadding"]],[s.radialAxis,["showline"],["gridLinesVisible"]],[s.radialAxis,["tickorientation"],["tickOrientation"]],[s.radialAxis,["ticksuffix"],["ticksSuffix"]],[s.radialAxis,["range"],["domain"]],[s.font,["outlinecolor"],["outlineColor"]],[s.legend,["traceorder"],["reverseOrder"]],[s,["labeloffset"],["labelOffset"]],[s,["defaultcolorrange"],["defaultColorRange"]]].forEach((function(t,r){o.util.translator.apply(null,t.concat(e))})),e?("undefined"!=typeof s.tickLength&&(s.angularaxis.ticklen=s.tickLength,delete s.tickLength),s.tickColor&&(s.angularaxis.tickcolor=s.tickColor,delete s.tickColor)):(s.angularAxis&&"undefined"!=typeof s.angularAxis.ticklen&&(s.tickLength=s.angularAxis.ticklen),s.angularAxis&&"undefined"!=typeof s.angularAxis.tickcolor&&(s.tickColor=s.angularAxis.tickcolor)),s.legend&&"boolean"!=typeof s.legend.reverseOrder&&(s.legend.reverseOrder="normal"!=s.legend.reverseOrder),s.legend&&"boolean"==typeof s.legend.traceorder&&(s.legend.traceorder=s.legend.traceorder?"reversed":"normal",delete s.legend.reverseOrder),s.margin&&"undefined"!=typeof s.margin.t){var l=["t","r","b","l","pad"],c=["top","right","bottom","left","pad"],u={};n.entries(s.margin).forEach((function(t,e){u[c[l.indexOf(t.key)]]=t.value})),s.margin=u}e&&(delete s.needsEndSpacing,delete s.minorTickColor,delete s.minorTicks,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksStep,delete s.angularaxis.rewriteTicks,delete s.angularaxis.nticks,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksStep,delete s.radialaxis.rewriteTicks,delete s.radialaxis.nticks),r.layout=s}return r}};return t}},{"../../../constants/alignment":745,"../../../lib":778,d3:169}],901:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../../lib"),a=t("../../../components/color"),o=t("./micropolar"),s=t("./undo_manager"),l=i.extendDeepAll,c=e.exports={};c.framework=function(t){var e,r,i,a,u,f=new s;function h(r,s){return s&&(u=s),n.select(n.select(u).node().parentNode).selectAll(".svg-container>*:not(.chart-root)").remove(),e=e?l(e,r):r,i||(i=o.Axis()),a=o.adapter.plotly().convert(e),i.config(a).render(u),t.data=e.data,t.layout=e.layout,c.fillLayout(t),e}return h.isPolar=!0,h.svg=function(){return i.svg()},h.getConfig=function(){return e},h.getLiveConfig=function(){return o.adapter.plotly().convert(i.getLiveConfig(),!0)},h.getLiveScales=function(){return{t:i.angularScale(),r:i.radialScale()}},h.setUndoPoint=function(){var t,n,i=this,a=o.util.cloneJson(e);t=a,n=r,f.add({undo:function(){n&&i(n)},redo:function(){i(t)}}),r=o.util.cloneJson(a)},h.undo=function(){f.undo()},h.redo=function(){f.redo()},h},c.fillLayout=function(t){var e=n.select(t).selectAll(".plot-container"),r=e.selectAll(".svg-container"),i=t.framework&&t.framework.svg&&t.framework.svg(),o={width:800,height:600,paper_bgcolor:a.background,_container:e,_paperdiv:r,_paper:i};t._fullLayout=l(o,t.layout)}},{"../../../components/color":643,"../../../lib":778,"./micropolar":900,"./undo_manager":902,d3:169}],902:[function(t,e,r){"use strict";e.exports=function(){var t,e=[],r=-1,n=!1;function i(t,e){return t?(n=!0,t[e](),n=!1,this):this}return{add:function(t){return n||(e.splice(r+1,e.length-r),e.push(t),r=e.length-1),this},setCallback:function(e){t=e},undo:function(){var n=e[r];return n?(i(n,"undo"),r-=1,t&&t(n.undo),this):this},redo:function(){var n=e[r+1];return n?(i(n,"redo"),r+=1,t&&t(n.redo),this):this},clear:function(){e=[],r=-1},hasUndo:function(){return-1!==r},hasRedo:function(){return r=90||s>90&&l>=450?1:u<=0&&h<=0?0:Math.max(u,h);e=s<=180&&l>=180||s>180&&l>=540?-1:c>=0&&f>=0?0:Math.min(c,f);r=s<=270&&l>=270||s>270&&l>=630?-1:u>=0&&h>=0?0:Math.min(u,h);n=l>=360?1:c<=0&&f<=0?0:Math.max(c,f);return[e,r,n,i]}(p),b=x[2]-x[0],_=x[3]-x[1],w=h/f,T=Math.abs(_/b);w>T?(d=f,y=(h-(g=f*T))/n.h/2,m=[o[0],o[1]],v=[s[0]+y,s[1]-y]):(g=h,y=(f-(d=h/T))/n.w/2,m=[o[0]+y,o[1]-y],v=[s[0],s[1]]),this.xLength2=d,this.yLength2=g,this.xDomain2=m,this.yDomain2=v;var k=this.xOffset2=n.l+n.w*m[0],M=this.yOffset2=n.t+n.h*(1-v[1]),A=this.radius=d/b,S=this.innerRadius=e.hole*A,E=this.cx=k-A*x[0],C=this.cy=M+A*x[3],P=this.cxx=E-k,z=this.cyy=C-M;this.radialAxis=this.mockAxis(t,e,i,{_id:"x",side:{counterclockwise:"top",clockwise:"bottom"}[i.side],_realSide:i.side,domain:[S/n.w,A/n.w]}),this.angularAxis=this.mockAxis(t,e,a,{side:"right",domain:[0,Math.PI],autorange:!1}),this.doAutoRange(t,e),this.updateAngularAxis(t,e),this.updateRadialAxis(t,e),this.updateRadialAxisTitle(t,e),this.xaxis=this.mockCartesianAxis(t,e,{_id:"x",domain:m}),this.yaxis=this.mockCartesianAxis(t,e,{_id:"y",domain:v});var O=this.pathSubplot();this.clipPaths.forTraces.select("path").attr("d",O).attr("transform",l(P,z)),r.frontplot.attr("transform",l(k,M)).call(u.setClipUrl,this._hasClipOnAxisFalse?null:this.clipIds.forTraces,this.gd),r.bg.attr("d",O).attr("transform",l(E,C)).call(c.fill,e.bgcolor)},O.mockAxis=function(t,e,r,n){var i=o.extendFlat({},r,n);return d(i,e,t),i},O.mockCartesianAxis=function(t,e,r){var n=this,i=r._id,a=o.extendFlat({type:"linear"},r);p(a,t);var s={x:[0,2],y:[1,3]};return a.setRange=function(){var t=n.sectorBBox,r=s[i],o=n.radialAxis._rl,l=(o[1]-o[0])/(1-e.hole);a.range=[t[r[0]]*l,t[r[1]]*l]},a.isPtWithinRange="x"===i?function(t){return n.isPtInside(t)}:function(){return!0},a.setRange(),a.setScale(),a},O.doAutoRange=function(t,e){var r=this.gd,n=this.radialAxis,i=e.radialaxis;n.setScale(),g(r,n);var a=n.range;i.range=a.slice(),i._input.range=a.slice(),n._rl=[n.r2l(a[0],null,"gregorian"),n.r2l(a[1],null,"gregorian")]},O.updateRadialAxis=function(t,e){var r=this,n=r.gd,i=r.layers,a=r.radius,u=r.innerRadius,f=r.cx,p=r.cy,d=e.radialaxis,g=L(e.sector[0],360),m=r.radialAxis,v=u90&&g<=270&&(m.tickangle=180);var y=function(t){return l(m.l2p(t.x)+u,0)},x=D(d);if(r.radialTickLayout!==x&&(i["radial-axis"].selectAll(".xtick").remove(),r.radialTickLayout=x),v){m.setScale();var b=h.calcTicks(m),_=h.clipEnds(m,b),w=h.getTickSigns(m)[2];h.drawTicks(n,m,{vals:b,layer:i["radial-axis"],path:h.makeTickPath(m,0,w),transFn:y,crisp:!1}),h.drawGrid(n,m,{vals:_,layer:i["radial-grid"],path:function(t){return r.pathArc(m.r2p(t.x)+u)},transFn:o.noop,crisp:!1}),h.drawLabels(n,m,{vals:b,layer:i["radial-axis"],transFn:y,labelFns:h.makeLabelFns(m,0)})}var T=r.radialAxisAngle=r.vangles?P(R(I(d.angle),r.vangles)):d.angle,k=l(f,p),M=k+s(-T);F(i["radial-axis"],v&&(d.showticklabels||d.ticks),{transform:M}),F(i["radial-grid"],v&&d.showgrid,{transform:k}),F(i["radial-line"].select("line"),v&&d.showline,{x1:u,y1:0,x2:a,y2:0,transform:M}).attr("stroke-width",d.linewidth).call(c.stroke,d.linecolor)},O.updateRadialAxisTitle=function(t,e,r){var n=this.gd,i=this.radius,a=this.cx,o=this.cy,s=e.radialaxis,l=this.id+"title",c=void 0!==r?r:this.radialAxisAngle,f=I(c),h=Math.cos(f),p=Math.sin(f),d=0;if(s.title){var g=u.bBox(this.layers["radial-axis"].node()).height,m=s.title.font.size;d="counterclockwise"===s.side?-g-.4*m:g+.8*m}this.layers["radial-axis-title"]=x.draw(n,l,{propContainer:s,propName:this.id+".radialaxis.title",placeholder:C(n,"Click to enter radial axis title"),attributes:{x:a+i/2*h+d*p,y:o-i/2*p+d*h,"text-anchor":"middle"},transform:{rotate:-c}})},O.updateAngularAxis=function(t,e){var r=this,n=r.gd,i=r.layers,a=r.radius,u=r.innerRadius,f=r.cx,p=r.cy,d=e.angularaxis,g=r.angularAxis;r.fillViewInitialKey("angularaxis.rotation",d.rotation),g.setGeometry(),g.setScale();var m=function(t){return g.t2g(t.x)};"linear"===g.type&&"radians"===g.thetaunit&&(g.tick0=P(g.tick0),g.dtick=P(g.dtick));var v=function(t){return l(f+a*Math.cos(t),p-a*Math.sin(t))},y=h.makeLabelFns(g,0).labelStandoff,x={xFn:function(t){var e=m(t);return Math.cos(e)*y},yFn:function(t){var e=m(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(y+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*A)},anchorFn:function(t){var e=m(t),r=Math.cos(e);return Math.abs(r)<.1?"middle":r>0?"start":"end"},heightFn:function(t,e,r){var n=m(t);return-.5*(1+Math.sin(n))*r}},b=D(d);r.angularTickLayout!==b&&(i["angular-axis"].selectAll("."+g._id+"tick").remove(),r.angularTickLayout=b);var _,w=h.calcTicks(g);if("linear"===e.gridshape?(_=w.map(m),o.angleDelta(_[0],_[1])<0&&(_=_.slice().reverse())):_=null,r.vangles=_,"category"===g.type&&(w=w.filter((function(t){return o.isAngleInsideSector(m(t),r.sectorInRad)}))),g.visible){var T="inside"===g.ticks?-1:1,k=(g.linewidth||1)/2;h.drawTicks(n,g,{vals:w,layer:i["angular-axis"],path:"M"+T*k+",0h"+T*g.ticklen,transFn:function(t){var e=m(t);return v(e)+s(-P(e))},crisp:!1}),h.drawGrid(n,g,{vals:w,layer:i["angular-grid"],path:function(t){var e=m(t),r=Math.cos(e),n=Math.sin(e);return"M"+[f+u*r,p-u*n]+"L"+[f+a*r,p-a*n]},transFn:o.noop,crisp:!1}),h.drawLabels(n,g,{vals:w,layer:i["angular-axis"],repositionOnUpdate:!0,transFn:function(t){return v(m(t))},labelFns:x})}F(i["angular-line"].select("path"),d.showline,{d:r.pathSubplot(),transform:l(f,p)}).attr("stroke-width",d.linewidth).call(c.stroke,d.linecolor)},O.updateFx=function(t,e){this.gd._context.staticPlot||(this.updateAngularDrag(t),this.updateRadialDrag(t,e,0),this.updateRadialDrag(t,e,1),this.updateMainDrag(t))},O.updateMainDrag=function(t){var e,r,s=this,c=s.gd,u=s.layers,f=t._zoomlayer,h=S.MINZOOM,p=S.OFFEDGE,d=s.radius,g=s.innerRadius,x=s.cx,T=s.cy,k=s.cxx,M=s.cyy,A=s.sectorInRad,C=s.vangles,L=s.radialAxis,I=E.clampTiny,P=E.findXYatLength,z=E.findEnclosingVertexAngles,O=S.cornerHalfWidth,D=S.cornerLen/2,R=m.makeDragger(u,"path","maindrag","crosshair");n.select(R).attr("d",s.pathSubplot()).attr("transform",l(x,T));var F,B,N,j,U,V,q,H,G,Y={element:R,gd:c,subplot:s.id,plotinfo:{id:s.id,xaxis:s.xaxis,yaxis:s.yaxis},xaxes:[s.xaxis],yaxes:[s.yaxis]};function W(t,e){return Math.sqrt(t*t+e*e)}function X(t,e){return W(t-k,e-M)}function Z(t,e){return Math.atan2(M-e,t-k)}function J(t,e){return[t*Math.cos(e),t*Math.sin(-e)]}function K(t,e){if(0===t)return s.pathSector(2*O);var r=D/t,n=e-r,i=e+r,a=Math.max(0,Math.min(t,d)),o=a-O,l=a+O;return"M"+J(o,n)+"A"+[o,o]+" 0,0,0 "+J(o,i)+"L"+J(l,i)+"A"+[l,l]+" 0,0,1 "+J(l,n)+"Z"}function Q(t,e,r){if(0===t)return s.pathSector(2*O);var n,i,a=J(t,e),o=J(t,r),l=I((a[0]+o[0])/2),c=I((a[1]+o[1])/2);if(l&&c){var u=c/l,f=-1/u,h=P(O,u,l,c);n=P(D,f,h[0][0],h[0][1]),i=P(D,f,h[1][0],h[1][1])}else{var p,d;c?(p=D,d=O):(p=O,d=D),n=[[l-p,c-d],[l+p,c-d]],i=[[l-p,c+d],[l+p,c+d]]}return"M"+n.join("L")+"L"+i.reverse().join("L")+"Z"}function $(t,e){return e=Math.max(Math.min(e,d),g),th?(t-1&&1===t&&_(e,c,[s.xaxis],[s.yaxis],s.id,Y),r.indexOf("event")>-1&&y.click(c,e,s.id)}Y.prepFn=function(t,n,a){var l=c._fullLayout.dragmode,u=R.getBoundingClientRect();c._fullLayout._calcInverseTransform(c);var h=c._fullLayout._invTransform;e=c._fullLayout._invScaleX,r=c._fullLayout._invScaleY;var p=o.apply3DTransform(h)(n-u.left,a-u.top);if(F=p[0],B=p[1],C){var g=E.findPolygonOffset(d,A[0],A[1],C);F+=k+g[0],B+=M+g[1]}switch(l){case"zoom":Y.moveFn=C?nt:et,Y.clickFn=ot,Y.doneFn=it,function(){N=null,j=null,U=s.pathSubplot(),V=!1;var t=c._fullLayout[s.id];q=i(t.bgcolor).getLuminance(),(H=m.makeZoombox(f,q,x,T,U)).attr("fill-rule","evenodd"),G=m.makeCorners(f,x,T),w(c)}();break;case"select":case"lasso":b(t,n,a,Y,l)}},R.onmousemove=function(t){y.hover(c,t,s.id),c._fullLayout._lasthover=R,c._fullLayout._hoversubplot=s.id},R.onmouseout=function(t){c._dragging||v.unhover(c,t)},v.init(Y)},O.updateRadialDrag=function(t,e,r){var i=this,c=i.gd,u=i.layers,f=i.radius,h=i.innerRadius,p=i.cx,d=i.cy,g=i.radialAxis,y=S.radialDragBoxSize,x=y/2;if(g.visible){var b,_,T,A=I(i.radialAxisAngle),E=g._rl,C=E[0],L=E[1],z=E[r],O=.75*(E[1]-E[0])/(1-e.hole)/f;r?(b=p+(f+x)*Math.cos(A),_=d-(f+x)*Math.sin(A),T="radialdrag"):(b=p+(h-x)*Math.cos(A),_=d-(h-x)*Math.sin(A),T="radialdrag-inner");var D,B,N,j=m.makeRectDragger(u,T,"crosshair",-x,-x,y,y),U={element:j,gd:c};F(n.select(j),g.visible&&h0==(r?N>C:Nn?function(t){return t<=0}:function(t){return t>=0};t.c2g=function(r){var n=t.c2l(r)-e;return(s(n)?n:0)+o},t.g2c=function(r){return t.l2c(r+e-o)},t.g2p=function(t){return t*a},t.c2p=function(e){return t.g2p(t.c2g(e))}}}(t,e);break;case"angularaxis":!function(t,e){var r=t.type;if("linear"===r){var i=t.d2c,s=t.c2d;t.d2c=function(t,e){return function(t,e){return"degrees"===e?a(t):t}(i(t),e)},t.c2d=function(t,e){return s(function(t,e){return"degrees"===e?o(t):t}(t,e))}}t.makeCalcdata=function(e,i){var a,o,s=e[i],l=e._length,c=function(r){return t.d2c(r,e.thetaunit)};if(s){if(n.isTypedArray(s)&&"linear"===r){if(l===s.length)return s;if(s.subarray)return s.subarray(0,l)}for(a=new Array(l),o=0;o0){for(var n=[],i=0;i<r.length;i++)n[i]="`"+r[i]+"`";e+="Finally, the template string has access to ",e=1===r.length?"variable "+n[0]:"variables "+n.slice(0,-1).join(", ")+" and "+n.slice(-1)+"."}return e}r.hovertemplateAttrs=function(t,e){t=t||{};n(e=e||{});var r={valType:"string",dflt:"",editType:t.editType||"none"};return!1!==t.arrayOk&&(r.arrayOk=!0),r},r.texttemplateAttrs=function(t,e){t=t||{};n(e=e||{});var r={valType:"string",dflt:"",editType:t.editType||"calc"};return!1!==t.arrayOk&&(r.arrayOk=!0),r}},{"../constants/docs":748}],907:[function(t,e,r){"use strict";var n=t("./ternary"),i=t("../../plots/get_data").getSubplotCalcData,a=t("../../lib").counterRegex;r.name="ternary";var o=r.attr="subplot";r.idRoot="ternary",r.idRegex=r.attrRegex=a("ternary"),(r.attributes={})[o]={valType:"subplotid",dflt:"ternary",editType:"calc"},r.layoutAttributes=t("./layout_attributes"),r.supplyLayoutDefaults=t("./layout_defaults"),r.plot=function(t){for(var e=t._fullLayout,r=t.calcdata,a=e._subplots.ternary,o=0;o=u&&(p.min=0,g.min=0,m.min=0,t.aaxis&&delete t.aaxis.min,t.baxis&&delete t.baxis.min,t.caxis&&delete t.caxis.min)}function d(t,e,r,n){var i=f[e._name];function o(r,n){return a.coerce(t,e,i,r,n)}o("uirevision",n.uirevision),e.type="linear";var h=o("color"),p=h!==i.color.dflt?h:r.font.color,d=e._name.charAt(0).toUpperCase(),g="Component "+d,m=o("title.text",g);e._hovertitle=m===g?m:d,a.coerceFont(o,"title.font",{family:r.font.family,size:Math.round(1.2*r.font.size),color:p}),o("min"),c(t,e,o,"linear"),s(t,e,o,"linear",{}),l(t,e,o,{outerTicks:!0}),o("showticklabels")&&(a.coerceFont(o,"tickfont",{family:r.font.family,size:r.font.size,color:p}),o("tickangle"),o("tickformat")),u(t,e,o,{dfltColor:h,bgColor:r.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:i}),o("hoverformat"),o("layer")}e.exports=function(t,e,r){o(t,e,r,{type:"ternary",attributes:f,handleDefaults:p,font:e.font,paper_bgcolor:e.paper_bgcolor})}},{"../../components/color":643,"../../lib":778,"../../plot_api/plot_template":817,"../cartesian/line_grid_defaults":844,"../cartesian/tick_label_defaults":849,"../cartesian/tick_mark_defaults":850,"../cartesian/tick_value_defaults":851,"../subplot_defaults":905,"./layout_attributes":908}],910:[function(t,e,r){"use strict";var n=t("d3"),i=t("tinycolor2"),a=t("../../registry"),o=t("../../lib"),s=o.strTranslate,l=o._,c=t("../../components/color"),u=t("../../components/drawing"),f=t("../cartesian/set_convert"),h=t("../../lib/extend").extendFlat,p=t("../plots"),d=t("../cartesian/axes"),g=t("../../components/dragelement"),m=t("../../components/fx"),v=t("../../components/dragelement/helpers"),y=v.freeMode,x=v.rectMode,b=t("../../components/titles"),_=t("../cartesian/select").prepSelect,w=t("../cartesian/select").selectOnClick,T=t("../cartesian/select").clearSelect,k=t("../cartesian/select").clearSelectionsCache,M=t("../cartesian/constants");function A(t,e){this.id=t.id,this.graphDiv=t.graphDiv,this.init(e),this.makeFramework(e),this.aTickLayout=null,this.bTickLayout=null,this.cTickLayout=null}e.exports=A;var S=A.prototype;S.init=function(t){this.container=t._ternarylayer,this.defs=t._defs,this.layoutId=t._uid,this.traceHash={},this.layers={}},S.plot=function(t,e){var r=e[this.id],n=e._size;this._hasClipOnAxisFalse=!1;for(var i=0;iE*b?i=(a=b)*E:a=(i=x)/E,o=v*i/x,l=y*a/b,r=e.l+e.w*g-i/2,n=e.t+e.h*(1-m)-a/2,p.x0=r,p.y0=n,p.w=i,p.h=a,p.sum=_,p.xaxis={type:"linear",range:[w+2*k-_,_-w-2*T],domain:[g-o/2,g+o/2],_id:"x"},f(p.xaxis,p.graphDiv._fullLayout),p.xaxis.setScale(),p.xaxis.isPtWithinRange=function(t){return t.a>=p.aaxis.range[0]&&t.a<=p.aaxis.range[1]&&t.b>=p.baxis.range[1]&&t.b<=p.baxis.range[0]&&t.c>=p.caxis.range[1]&&t.c<=p.caxis.range[0]},p.yaxis={type:"linear",range:[w,_-T-k],domain:[m-l/2,m+l/2],_id:"y"},f(p.yaxis,p.graphDiv._fullLayout),p.yaxis.setScale(),p.yaxis.isPtWithinRange=function(){return!0};var M=p.yaxis.domain[0],A=p.aaxis=h({},t.aaxis,{range:[w,_-T-k],side:"left",tickangle:(+t.aaxis.tickangle||0)-30,domain:[M,M+l*E],anchor:"free",position:0,_id:"y",_length:i});f(A,p.graphDiv._fullLayout),A.setScale();var S=p.baxis=h({},t.baxis,{range:[_-w-k,T],side:"bottom",domain:p.xaxis.domain,anchor:"free",position:0,_id:"x",_length:i});f(S,p.graphDiv._fullLayout),S.setScale();var C=p.caxis=h({},t.caxis,{range:[_-w-T,k],side:"right",tickangle:(+t.caxis.tickangle||0)+30,domain:[M,M+l*E],anchor:"free",position:0,_id:"y",_length:i});f(C,p.graphDiv._fullLayout),C.setScale();var L="M"+r+","+(n+a)+"h"+i+"l-"+i/2+",-"+a+"Z";p.clipDef.select("path").attr("d",L),p.layers.plotbg.select("path").attr("d",L);var I="M0,"+a+"h"+i+"l-"+i/2+",-"+a+"Z";p.clipDefRelative.select("path").attr("d",I);var P=s(r,n);p.plotContainer.selectAll(".scatterlayer,.maplayer").attr("transform",P),p.clipDefRelative.select("path").attr("transform",null);var z=s(r-S._offset,n+a);p.layers.baxis.attr("transform",z),p.layers.bgrid.attr("transform",z);var O=s(r+i/2,n)+"rotate(30)"+s(0,-A._offset);p.layers.aaxis.attr("transform",O),p.layers.agrid.attr("transform",O);var D=s(r+i/2,n)+"rotate(-30)"+s(0,-C._offset);p.layers.caxis.attr("transform",D),p.layers.cgrid.attr("transform",D),p.drawAxes(!0),p.layers.aline.select("path").attr("d",A.showline?"M"+r+","+(n+a)+"l"+i/2+",-"+a:"M0,0").call(c.stroke,A.linecolor||"#000").style("stroke-width",(A.linewidth||0)+"px"),p.layers.bline.select("path").attr("d",S.showline?"M"+r+","+(n+a)+"h"+i:"M0,0").call(c.stroke,S.linecolor||"#000").style("stroke-width",(S.linewidth||0)+"px"),p.layers.cline.select("path").attr("d",C.showline?"M"+(r+i/2)+","+n+"l"+i/2+","+a:"M0,0").call(c.stroke,C.linecolor||"#000").style("stroke-width",(C.linewidth||0)+"px"),p.graphDiv._context.staticPlot||p.initInteractions(),u.setClipUrl(p.layers.frontplot,p._hasClipOnAxisFalse?null:p.clipId,p.graphDiv)},S.drawAxes=function(t){var e=this.graphDiv,r=this.id.substr(7)+"title",n=this.layers,i=this.aaxis,a=this.baxis,o=this.caxis;if(this.drawAx(i),this.drawAx(a),this.drawAx(o),t){var s=Math.max(i.showticklabels?i.tickfont.size/2:0,(o.showticklabels?.75*o.tickfont.size:0)+("outside"===o.ticks?.87*o.ticklen:0)),c=(a.showticklabels?a.tickfont.size:0)+("outside"===a.ticks?a.ticklen:0)+3;n["a-title"]=b.draw(e,"a"+r,{propContainer:i,propName:this.id+".aaxis.title",placeholder:l(e,"Click to enter Component A title"),attributes:{x:this.x0+this.w/2,y:this.y0-i.title.font.size/3-s,"text-anchor":"middle"}}),n["b-title"]=b.draw(e,"b"+r,{propContainer:a,propName:this.id+".baxis.title",placeholder:l(e,"Click to enter Component B title"),attributes:{x:this.x0-c,y:this.y0+this.h+.83*a.title.font.size+c,"text-anchor":"middle"}}),n["c-title"]=b.draw(e,"c"+r,{propContainer:o,propName:this.id+".caxis.title",placeholder:l(e,"Click to enter Component C title"),attributes:{x:this.x0+this.w+c,y:this.y0+this.h+.83*o.title.font.size+c,"text-anchor":"middle"}})}},S.drawAx=function(t){var e,r=this.graphDiv,n=t._name,i=n.charAt(0),a=t._id,s=this.layers[n],l=i+"tickLayout",c=(e=t).ticks+String(e.ticklen)+String(e.showticklabels);this[l]!==c&&(s.selectAll("."+a+"tick").remove(),this[l]=c),t.setScale();var u=d.calcTicks(t),f=d.clipEnds(t,u),h=d.makeTransTickFn(t),p=d.getTickSigns(t)[2],g=o.deg2rad(30),m=p*(t.linewidth||1)/2,v=p*t.ticklen,y=this.w,x=this.h,b="b"===i?"M0,"+m+"l"+Math.sin(g)*v+","+Math.cos(g)*v:"M"+m+",0l"+Math.cos(g)*v+","+-Math.sin(g)*v,_={a:"M0,0l"+x+",-"+y/2,b:"M0,0l-"+y/2+",-"+x,c:"M0,0l-"+x+","+y/2}[i];d.drawTicks(r,t,{vals:"inside"===t.ticks?f:u,layer:s,path:b,transFn:h,crisp:!1}),d.drawGrid(r,t,{vals:f,layer:this.layers[i+"grid"],path:_,transFn:h,crisp:!1}),d.drawLabels(r,t,{vals:u,layer:s,transFn:h,labelFns:d.makeLabelFns(t,0,30)})};var C=M.MINZOOM/2+.87,L="m-0.87,.5h"+C+"v3h-"+(C+5.2)+"l"+(C/2+2.6)+",-"+(.87*C+4.5)+"l2.6,1.5l-"+C/2+","+.87*C+"Z",I="m0.87,.5h-"+C+"v3h"+(C+5.2)+"l-"+(C/2+2.6)+",-"+(.87*C+4.5)+"l-2.6,1.5l"+C/2+","+.87*C+"Z",P="m0,1l"+C/2+","+.87*C+"l2.6,-1.5l-"+(C/2+2.6)+",-"+(.87*C+4.5)+"l-"+(C/2+2.6)+","+(.87*C+4.5)+"l2.6,1.5l"+C/2+",-"+.87*C+"Z",z=!0;function O(t){n.select(t).selectAll(".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners").remove()}S.clearSelect=function(){k(this.dragOptions),T(this.dragOptions.gd)},S.initInteractions=function(){var t,e,r,n,f,h,p,d,v,b,T,k,A=this,S=A.layers.plotbg.select("path").node(),C=A.graphDiv,D=C._fullLayout._zoomlayer;function R(t){var e={};return e[A.id+".aaxis.min"]=t.a,e[A.id+".baxis.min"]=t.b,e[A.id+".caxis.min"]=t.c,e}function F(t,e){var r=C._fullLayout.clickmode;O(C),2===t&&(C.emit("plotly_doubleclick",null),a.call("_guiRelayout",C,R({a:0,b:0,c:0}))),r.indexOf("select")>-1&&1===t&&w(e,C,[A.xaxis],[A.yaxis],A.id,A.dragOptions),r.indexOf("event")>-1&&m.click(C,e,A.id)}function B(t,e){return 1-e/A.h}function N(t,e){return 1-(t+(A.h-e)/Math.sqrt(3))/A.w}function j(t,e){return(t-(A.h-e)/Math.sqrt(3))/A.w}function U(i,a){var o=r+i*t,s=n+a*e,l=Math.max(0,Math.min(1,B(0,n),B(0,s))),c=Math.max(0,Math.min(1,N(r,n),N(o,s))),u=Math.max(0,Math.min(1,j(r,n),j(o,s))),g=(l/2+u)*A.w,m=(1-l/2-c)*A.w,y=(g+m)/2,x=m-g,_=(1-l)*A.h,w=_-x/E;x.2?"rgba(0,0,0,0.4)":"rgba(255,255,255,0.3)").duration(200),k.transition().style("opacity",1).duration(200),b=!0),C.emit("plotly_relayouting",R(p))}function V(){O(C),p!==f&&(a.call("_guiRelayout",C,R(p)),z&&C.data&&C._context.showTips&&(o.notifier(l(C,"Double-click to zoom back out"),"long"),z=!1))}function q(t,e){var r=t/A.xaxis._m,n=e/A.yaxis._m,i=[(p={a:f.a-n,b:f.b+(r+n)/2,c:f.c-(r-n)/2}).a,p.b,p.c].sort(o.sorterAsc),a=i.indexOf(p.a),l=i.indexOf(p.b),c=i.indexOf(p.c);i[0]<0&&(i[1]+i[0]/2<0?(i[2]+=i[0]+i[1],i[0]=i[1]=0):(i[2]+=i[0]/2,i[1]+=i[0]/2,i[0]=0),p={a:i[a],b:i[l],c:i[c]},e=(f.a-p.a)*A.yaxis._m,t=(f.c-p.c-f.b+p.b)*A.xaxis._m);var h=s(A.x0+t,A.y0+e);A.plotContainer.selectAll(".scatterlayer,.maplayer").attr("transform",h);var d=s(-t,-e);A.clipDefRelative.select("path").attr("transform",d),A.aaxis.range=[p.a,A.sum-p.b-p.c],A.baxis.range=[A.sum-p.a-p.c,p.b],A.caxis.range=[A.sum-p.a-p.b,p.c],A.drawAxes(!1),A._hasClipOnAxisFalse&&A.plotContainer.select(".scatterlayer").selectAll(".trace").call(u.hideOutsideRangePoints,A),C.emit("plotly_relayouting",R(p))}function H(){a.call("_guiRelayout",C,R(p))}this.dragOptions={element:S,gd:C,plotinfo:{id:A.id,domain:C._fullLayout[A.id].domain,xaxis:A.xaxis,yaxis:A.yaxis},subplot:A.id,prepFn:function(a,l,u){A.dragOptions.xaxes=[A.xaxis],A.dragOptions.yaxes=[A.yaxis],t=C._fullLayout._invScaleX,e=C._fullLayout._invScaleY;var g=A.dragOptions.dragmode=C._fullLayout.dragmode;y(g)?A.dragOptions.minDrag=1:A.dragOptions.minDrag=void 0,"zoom"===g?(A.dragOptions.moveFn=U,A.dragOptions.clickFn=F,A.dragOptions.doneFn=V,function(t,e,a){var l=S.getBoundingClientRect();r=e-l.left,n=a-l.top,C._fullLayout._calcInverseTransform(C);var u=C._fullLayout._invTransform,g=o.apply3DTransform(u)(r,n);r=g[0],n=g[1],f={a:A.aaxis.range[0],b:A.baxis.range[1],c:A.caxis.range[1]},p=f,h=A.aaxis.range[1]-f.a,d=i(A.graphDiv._fullLayout[A.id].bgcolor).getLuminance(),v="M0,"+A.h+"L"+A.w/2+", 0L"+A.w+","+A.h+"Z",b=!1,T=D.append("path").attr("class","zoombox").attr("transform",s(A.x0,A.y0)).style({fill:d>.2?"rgba(0,0,0,0)":"rgba(255,255,255,0)","stroke-width":0}).attr("d",v),k=D.append("path").attr("class","zoombox-corners").attr("transform",s(A.x0,A.y0)).style({fill:c.background,stroke:c.defaultLine,"stroke-width":1,opacity:0}).attr("d","M0,0Z"),A.clearSelect(C)}(0,l,u)):"pan"===g?(A.dragOptions.moveFn=q,A.dragOptions.clickFn=F,A.dragOptions.doneFn=H,f={a:A.aaxis.range[0],b:A.baxis.range[1],c:A.caxis.range[1]},p=f,A.clearSelect(C)):(x(g)||y(g))&&_(a,l,u,A.dragOptions,g)}},S.onmousemove=function(t){m.hover(C,t,A.id),C._fullLayout._lasthover=S,C._fullLayout._hoversubplot=A.id},S.onmouseout=function(t){C._dragging||g.unhover(C,t)},g.init(this.dragOptions)}},{"../../components/color":643,"../../components/dragelement":662,"../../components/dragelement/helpers":661,"../../components/drawing":665,"../../components/fx":683,"../../components/titles":738,"../../lib":778,"../../lib/extend":768,"../../registry":911,"../cartesian/axes":828,"../cartesian/constants":834,"../cartesian/select":847,"../cartesian/set_convert":848,"../plots":891,d3:169,tinycolor2:576}],911:[function(t,e,r){"use strict";var n=t("./lib/loggers"),i=t("./lib/noop"),a=t("./lib/push_unique"),o=t("./lib/is_plain_object"),s=t("./lib/dom").addStyleRule,l=t("./lib/extend"),c=t("./plots/attributes"),u=t("./plots/layout_attributes"),f=l.extendFlat,h=l.extendDeepAll;function p(t){var e=t.name,i=t.categories,a=t.meta;if(r.modules[e])n.log("Type "+e+" already registered");else{r.subplotsRegistry[t.basePlotModule.name]||function(t){var e=t.name;if(r.subplotsRegistry[e])return void n.log("Plot type "+e+" already registered.");for(var i in v(t),r.subplotsRegistry[e]=t,r.componentsRegistry)b(i,t.name)}(t.basePlotModule);for(var o={},l=0;l-1&&(f[p[r]].title={text:""});for(r=0;r")?"":e.html(t).text()}));return e.remove(),r}(T),T=(T=T.replace(/&(?!\w+;|\#[0-9]+;| \#x[0-9A-F]+;)/g,"&")).replace(c,"'"),i.isIE()&&(T=(T=(T=T.replace(/"/gi,"'")).replace(/(\('#)([^']*)('\))/gi,'("#$2")')).replace(/(\\')/gi,'"')),T}},{"../components/color":643,"../components/drawing":665,"../constants/xmlns_namespaces":754,"../lib":778,d3:169}],920:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){for(var r=0;rf+c||!n(u))}for(var p=0;pa))return e}return void 0!==r?r:t.dflt},r.coerceColor=function(t,e,r){return i(e).isValid()?e:void 0!==r?r:t.dflt},r.coerceEnumerated=function(t,e,r){return t.coerceNumber&&(e=+e),-1!==t.values.indexOf(e)?e:void 0!==r?r:t.dflt},r.getValue=function(t,e){var r;return Array.isArray(t)?e0?i+=a:e<0&&(i-=a)}return n.inbox(r-e,i-e,b+(i-e)/(i-r)-1)}"h"===m.orientation?(a=r,s=e,u="y",f="x",h=S,p=A):(a=e,s=r,u="x",f="y",p=S,h=A);var E=t[u+"a"],C=t[f+"a"];d=Math.abs(E.r2c(E.range[1])-E.r2c(E.range[0]));var L=n.getDistanceFunction(i,h,p,(function(t){return(h(t)+p(t))/2}));if(n.getClosest(g,L,t),!1!==t.index&&g[t.index].p!==c){y||(T=function(t){return Math.min(_(t),t.p-v.bargroupwidth/2)},k=function(t){return Math.max(w(t),t.p+v.bargroupwidth/2)});var I=g[t.index],P=m.base?I.b+I.s:I.s;t[f+"0"]=t[f+"1"]=C.c2p(I[f],!0),t[f+"LabelVal"]=P;var z=v.extents[v.extents.round(I.p)];t[u+"0"]=E.c2p(y?T(I):z[0],!0),t[u+"1"]=E.c2p(y?k(I):z[1],!0);var O=void 0!==I.orig_p;return t[u+"LabelVal"]=O?I.orig_p:I.p,t.labelLabel=l(E,t[u+"LabelVal"]),t.valueLabel=l(C,t[f+"LabelVal"]),t.baseLabel=l(C,I.b),t.spikeDistance=(S(I)+function(t){return M(_(t),w(t))}(I))/2-b,t[u+"Spike"]=E.c2p(I.p,!0),o(I,m,t),t.hovertemplate=m.hovertemplate,t}}function f(t,e){var r=e.mcc||t.marker.color,n=e.mlcc||t.marker.line.color,i=s(t,e);return a.opacity(r)?r:a.opacity(n)&&i?n:void 0}e.exports={hoverPoints:function(t,e,r,n){var a=u(t,e,r,n);if(a){var o=a.cd,s=o[0].trace,l=o[a.index];return a.color=f(s,l),i.getComponentMethod("errorbars","hoverInfo")(l,s,a),[a]}},hoverOnBars:u,getTraceColor:f}},{"../../components/color":643,"../../components/fx":683,"../../constants/numerical":753,"../../lib":778,"../../plots/cartesian/axes":828,"../../registry":911,"./helpers":927}],929:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults").supplyDefaults,crossTraceDefaults:t("./defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc").crossTraceCalc,colorbar:t("../scatter/marker_colorbar"),arraysToCalcdata:t("./arrays_to_calcdata"),plot:t("./plot").plot,style:t("./style").style,styleOnSelect:t("./style").styleOnSelect,hoverPoints:t("./hover").hoverPoints,eventData:t("./event_data"),selectPoints:t("./select"),moduleType:"trace",name:"bar",basePlotModule:t("../../plots/cartesian"),categories:["bar-like","cartesian","svg","bar","oriented","errorBarsOK","showLegend","zoomScale"],animatable:!0,meta:{}}},{"../../plots/cartesian":841,"../scatter/marker_colorbar":1205,"./arrays_to_calcdata":920,"./attributes":921,"./calc":922,"./cross_trace_calc":924,"./defaults":925,"./event_data":926,"./hover":928,"./layout_attributes":930,"./layout_defaults":931,"./plot":932,"./select":933,"./style":935}],930:[function(t,e,r){"use strict";e.exports={barmode:{valType:"enumerated",values:["stack","group","overlay","relative"],dflt:"group",editType:"calc"},barnorm:{valType:"enumerated",values:["","fraction","percent"],dflt:"",editType:"calc"},bargap:{valType:"number",min:0,max:1,editType:"calc"},bargroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},{}],931:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../plots/cartesian/axes"),a=t("../../lib"),o=t("./layout_attributes");e.exports=function(t,e,r){function s(r,n){return a.coerce(t,e,o,r,n)}for(var l=!1,c=!1,u=!1,f={},h=s("barmode"),p=0;p0}function S(t){return"auto"===t?0:t}function E(t,e){var r=Math.PI/180*e,n=Math.abs(Math.sin(r)),i=Math.abs(Math.cos(r));return{x:t.width*i+t.height*n,y:t.width*n+t.height*i}}function C(t,e,r,n,i,a){var o=!!a.isHorizontal,s=!!a.constrained,l=a.angle||0,c=a.anchor||"end",u="end"===c,f="start"===c,h=((a.leftToRight||0)+1)/2,p=1-h,d=i.width,g=i.height,m=Math.abs(e-t),v=Math.abs(n-r),y=m>2*_&&v>2*_?_:0;m-=2*y,v-=2*y;var x=S(l);"auto"!==l||d<=m&&g<=v||!(d>m||g>v)||(d>v||g>m)&&d.01?H:function(t,e,r){return r&&t===e?t:Math.abs(t-e)>=2?H(t):t>e?Math.ceil(t):Math.floor(t)};B=G(B,N,D),N=G(N,B,D),j=G(j,U,!D),U=G(U,j,!D)}var Y=M(a.ensureSingle(P,"path"),I,m,v);if(Y.style("vector-effect","non-scaling-stroke").attr("d",isNaN((N-B)*(U-j))||V&&t._context.staticPlot?"M0,0Z":"M"+B+","+j+"V"+U+"H"+N+"V"+j+"Z").call(l.setClipUrl,e.layerClipId,t),!I.uniformtext.mode&&R){var W=l.makePointStyleFns(f);l.singlePointStyle(c,Y,f,W,t)}!function(t,e,r,n,i,s,c,f,p,m,v){var w,T=e.xaxis,A=e.yaxis,L=t._fullLayout;function I(e,r,n){return a.ensureSingle(e,"text").text(r).attr({class:"bartext bartext-"+w,"text-anchor":"middle","data-notex":1}).call(l.font,n).call(o.convertToTspans,t)}var P=n[0].trace,z="h"===P.orientation,O=function(t,e,r,n,i){var o,s=e[0].trace;o=s.texttemplate?function(t,e,r,n,i){var o=e[0].trace,s=a.castOption(o,r,"texttemplate");if(!s)return"";var l,c,f,h,p="waterfall"===o.type,d="funnel"===o.type;"h"===o.orientation?(l="y",c=i,f="x",h=n):(l="x",c=n,f="y",h=i);function g(t){return u(h,+t,!0).text}var m=e[r],v={};v.label=m.p,v.labelLabel=v[l+"Label"]=(y=m.p,u(c,y,!0).text);var y;var x=a.castOption(o,m.i,"text");(0===x||x)&&(v.text=x);v.value=m.s,v.valueLabel=v[f+"Label"]=g(m.s);var _={};b(_,o,m.i),p&&(v.delta=+m.rawS||m.s,v.deltaLabel=g(v.delta),v.final=m.v,v.finalLabel=g(v.final),v.initial=v.final-v.delta,v.initialLabel=g(v.initial));d&&(v.value=m.s,v.valueLabel=g(v.value),v.percentInitial=m.begR,v.percentInitialLabel=a.formatPercent(m.begR),v.percentPrevious=m.difR,v.percentPreviousLabel=a.formatPercent(m.difR),v.percentTotal=m.sumR,v.percenTotalLabel=a.formatPercent(m.sumR));var w=a.castOption(o,m.i,"customdata");w&&(v.customdata=w);return a.texttemplateString(s,v,t._d3locale,_,v,o._meta||{})}(t,e,r,n,i):s.textinfo?function(t,e,r,n){var i=t[0].trace,o="h"===i.orientation,s="waterfall"===i.type,l="funnel"===i.type;function c(t){return u(o?r:n,+t,!0).text}var f,h=i.textinfo,p=t[e],d=h.split("+"),g=[],m=function(t){return-1!==d.indexOf(t)};m("label")&&g.push((v=t[e].p,u(o?n:r,v,!0).text));var v;m("text")&&(0===(f=a.castOption(i,p.i,"text"))||f)&&g.push(f);if(s){var y=+p.rawS||p.s,x=p.v,b=x-y;m("initial")&&g.push(c(b)),m("delta")&&g.push(c(y)),m("final")&&g.push(c(x))}if(l){m("value")&&g.push(c(p.s));var _=0;m("percent initial")&&_++,m("percent previous")&&_++,m("percent total")&&_++;var w=_>1;m("percent initial")&&(f=a.formatPercent(p.begR),w&&(f+=" of initial"),g.push(f)),m("percent previous")&&(f=a.formatPercent(p.difR),w&&(f+=" of previous"),g.push(f)),m("percent total")&&(f=a.formatPercent(p.sumR),w&&(f+=" of total"),g.push(f))}return g.join("
")}(e,r,n,i):g.getValue(s.text,r);return g.coerceString(y,o)}(L,n,i,T,A);w=function(t,e){var r=g.getValue(t.textposition,e);return g.coerceEnumerated(x,r)}(P,i);var D="stack"===m.mode||"relative"===m.mode,R=n[i],F=!D||R._outmost;if(!O||"none"===w||(R.isBlank||s===c||f===p)&&("auto"===w||"inside"===w))return void r.select("text").remove();var B=L.font,N=d.getBarColor(n[i],P),j=d.getInsideTextFont(P,i,B,N),U=d.getOutsideTextFont(P,i,B),V=r.datum();z?"log"===T.type&&V.s0<=0&&(s=T.range[0]=G*(Z/Y):Z>=Y*(X/G);G>0&&Y>0&&(J||K||Q)?w="inside":(w="outside",q.remove(),q=null)}else w="inside";if(!q){W=a.ensureUniformFontSize(t,"outside"===w?U:j);var $=(q=I(r,O,W)).attr("transform");if(q.attr("transform",""),H=l.bBox(q.node()),G=H.width,Y=H.height,q.attr("transform",$),G<=0||Y<=0)return void q.remove()}var tt,et,rt=P.textangle;"outside"===w?(et="both"===P.constraintext||"outside"===P.constraintext,tt=function(t,e,r,n,i,a){var o,s=!!a.isHorizontal,l=!!a.constrained,c=a.angle||0,u=i.width,f=i.height,h=Math.abs(e-t),p=Math.abs(n-r);o=s?p>2*_?_:0:h>2*_?_:0;var d=1;l&&(d=s?Math.min(1,p/f):Math.min(1,h/u));var g=S(c),m=E(i,g),v=(s?m.x:m.y)/2,y=(i.left+i.right)/2,x=(i.top+i.bottom)/2,b=(t+e)/2,w=(r+n)/2,T=0,M=0,A=s?k(e,t):k(r,n);s?(b=e-A*o,T=A*v):(w=n+A*o,M=-A*v);return{textX:y,textY:x,targetX:b,targetY:w,anchorX:T,anchorY:M,scale:d,rotate:g}}(s,c,f,p,H,{isHorizontal:z,constrained:et,angle:rt})):(et="both"===P.constraintext||"inside"===P.constraintext,tt=C(s,c,f,p,H,{isHorizontal:z,constrained:et,angle:rt,anchor:P.insidetextanchor}));tt.fontSize=W.size,h(P.type,tt,L),R.transform=tt,M(q,L,m,v).attr("transform",a.getTextTransform(tt))}(t,e,P,r,p,B,N,j,U,m,v),e.layerClipId&&l.hideOutsideRangePoint(c,P.select("text"),w,L,f.xcalendar,f.ycalendar)}));var j=!1===f.cliponaxis;l.setClipUrl(c,j?null:e.layerClipId,t)}));c.getComponentMethod("errorbars","plot")(t,P,e,m)},toMoveInsideBar:C}},{"../../components/color":643,"../../components/drawing":665,"../../components/fx/helpers":679,"../../lib":778,"../../lib/svg_text_utils":803,"../../plots/cartesian/axes":828,"../../registry":911,"./attributes":921,"./constants":923,"./helpers":927,"./style":935,"./uniform_text":937,d3:169,"fast-isnumeric":241}],933:[function(t,e,r){"use strict";function n(t,e,r,n,i){var a=e.c2p(n?t.s0:t.p0,!0),o=e.c2p(n?t.s1:t.p1,!0),s=r.c2p(n?t.p0:t.s0,!0),l=r.c2p(n?t.p1:t.s1,!0);return i?[(a+o)/2,(s+l)/2]:n?[o,(s+l)/2]:[(a+o)/2,l]}e.exports=function(t,e){var r,i=t.cd,a=t.xaxis,o=t.yaxis,s=i[0].trace,l="funnel"===s.type,c="h"===s.orientation,u=[];if(!1===e)for(r=0;r1||0===i.bargap&&0===i.bargroupgap&&!t[0].trace.marker.line.width)&&n.select(this).attr("shape-rendering","crispEdges")})),e.selectAll("g.points").each((function(e){d(n.select(this),e[0].trace,t)})),s.getComponentMethod("errorbars","style")(e)},styleTextPoints:g,styleOnSelect:function(t,e,r){var i=e[0].trace;i.selectedpoints?function(t,e,r){a.selectedPointStyle(t.selectAll("path"),e),function(t,e,r){t.each((function(t){var i,s=n.select(this);if(t.selected){i=o.ensureUniformFontSize(r,m(s,t,e,r));var l=e.selected.textfont&&e.selected.textfont.color;l&&(i.color=l),a.font(s,i)}else a.selectedTextStyle(s,e)}))}(t.selectAll("text"),e,r)}(r,i,t):(d(r,i,t),s.getComponentMethod("errorbars","style")(r))},getInsideTextFont:y,getOutsideTextFont:x,getBarColor:_,resizeText:l}},{"../../components/color":643,"../../components/drawing":665,"../../lib":778,"../../registry":911,"./attributes":921,"./helpers":927,"./uniform_text":937,d3:169}],936:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("../../components/colorscale/helpers").hasColorscale,a=t("../../components/colorscale/defaults");e.exports=function(t,e,r,o,s){r("marker.color",o),i(t,"marker")&&a(t,e,s,r,{prefix:"marker.",cLetter:"c"}),r("marker.line.color",n.defaultLine),i(t,"marker.line")&&a(t,e,s,r,{prefix:"marker.line.",cLetter:"c"}),r("marker.line.width"),r("marker.opacity"),r("selected.marker.color"),r("unselected.marker.color")}},{"../../components/color":643,"../../components/colorscale/defaults":653,"../../components/colorscale/helpers":654}],937:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib");function a(t){return"_"+t+"Text_minsize"}e.exports={recordMinTextSize:function(t,e,r){if(r.uniformtext.mode){var n=a(t),i=r.uniformtext.minsize,o=e.scale*e.fontSize;e.hide=oh.range[1]&&(x+=Math.PI);if(n.getClosest(c,(function(t){return g(y,x,[t.rp0,t.rp1],[t.thetag0,t.thetag1],d)?m+Math.min(1,Math.abs(t.thetag1-t.thetag0)/v)-1+(t.rp1-y)/(t.rp1-t.rp0)-1:1/0}),t),!1!==t.index){var b=c[t.index];t.x0=t.x1=b.ct[0],t.y0=t.y1=b.ct[1];var _=i.extendFlat({},b,{r:b.s,theta:b.p});return o(b,u,t),s(_,u,f,t),t.hovertemplate=u.hovertemplate,t.color=a(u,b),t.xLabelVal=t.yLabelVal=void 0,b.s<0&&(t.idealAlign="left"),[t]}}},{"../../components/fx":683,"../../lib":778,"../../plots/polar/helpers":893,"../bar/hover":928,"../scatterpolar/hover":1265}],942:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"barpolar",basePlotModule:t("../../plots/polar"),categories:["polar","bar","showLegend"],attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("../scatterpolar/format_labels"),style:t("../bar/style").style,styleOnSelect:t("../bar/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../bar/select"),meta:{}}},{"../../plots/polar":894,"../bar/select":933,"../bar/style":935,"../scatter/marker_colorbar":1205,"../scatterpolar/format_labels":1264,"./attributes":938,"./calc":939,"./defaults":940,"./hover":941,"./layout_attributes":943,"./layout_defaults":944,"./plot":945}],943:[function(t,e,r){"use strict";e.exports={barmode:{valType:"enumerated",values:["stack","overlay"],dflt:"stack",editType:"calc"},bargap:{valType:"number",dflt:.1,min:0,max:1,editType:"calc"}}},{}],944:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e,r){var a,o={};function s(r,o){return n.coerce(t[a]||{},e[a],i,r,o)}for(var l=0;l0?(c=o,u=l):(c=l,u=o);var f=[s.findEnclosingVertexAngles(c,t.vangles)[0],(c+u)/2,s.findEnclosingVertexAngles(u,t.vangles)[1]];return s.pathPolygonAnnulus(n,i,c,u,f,e,r)};return function(t,n,i,o){return a.pathAnnulus(t,n,i,o,e,r)}}(e),p=e.layers.frontplot.select("g.barlayer");a.makeTraceGroups(p,r,"trace bars").each((function(){var r=n.select(this),s=a.ensureSingle(r,"g","points").selectAll("g.point").data(a.identity);s.enter().append("g").style("vector-effect","non-scaling-stroke").style("stroke-miterlimit",2).classed("point",!0),s.exit().remove(),s.each((function(t){var e,r=n.select(this),o=t.rp0=u.c2p(t.s0),s=t.rp1=u.c2p(t.s1),p=t.thetag0=f.c2g(t.p0),d=t.thetag1=f.c2g(t.p1);if(i(o)&&i(s)&&i(p)&&i(d)&&o!==s&&p!==d){var g=u.c2g(t.s1),m=(p+d)/2;t.ct=[l.c2p(g*Math.cos(m)),c.c2p(g*Math.sin(m))],e=h(o,s,p,d)}else e="M0,0Z";a.ensureSingle(r,"path").attr("d",e)})),o.setClipUrl(r,e._hasClipOnAxisFalse?e.clipIds.forTraces:null,t)}))}},{"../../components/drawing":665,"../../lib":778,"../../plots/polar/helpers":893,d3:169,"fast-isnumeric":241}],946:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../bar/attributes"),a=t("../../components/color/attributes"),o=t("../../plots/template_attributes").hovertemplateAttrs,s=t("../../lib/extend").extendFlat,l=n.marker,c=l.line;e.exports={y:{valType:"data_array",editType:"calc+clearAxisTypes"},x:{valType:"data_array",editType:"calc+clearAxisTypes"},x0:{valType:"any",editType:"calc+clearAxisTypes"},y0:{valType:"any",editType:"calc+clearAxisTypes"},dx:{valType:"number",editType:"calc"},dy:{valType:"number",editType:"calc"},xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:n.xperiod0,yperiod0:n.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,name:{valType:"string",editType:"calc+clearAxisTypes"},q1:{valType:"data_array",editType:"calc+clearAxisTypes"},median:{valType:"data_array",editType:"calc+clearAxisTypes"},q3:{valType:"data_array",editType:"calc+clearAxisTypes"},lowerfence:{valType:"data_array",editType:"calc"},upperfence:{valType:"data_array",editType:"calc"},notched:{valType:"boolean",editType:"calc"},notchwidth:{valType:"number",min:0,max:.5,dflt:.25,editType:"calc"},notchspan:{valType:"data_array",editType:"calc"},boxpoints:{valType:"enumerated",values:["all","outliers","suspectedoutliers",!1],editType:"calc"},jitter:{valType:"number",min:0,max:1,editType:"calc"},pointpos:{valType:"number",min:-2,max:2,editType:"calc"},boxmean:{valType:"enumerated",values:[!0,"sd",!1],editType:"calc"},mean:{valType:"data_array",editType:"calc"},sd:{valType:"data_array",editType:"calc"},orientation:{valType:"enumerated",values:["v","h"],editType:"calc+clearAxisTypes"},quartilemethod:{valType:"enumerated",values:["linear","exclusive","inclusive"],dflt:"linear",editType:"calc"},width:{valType:"number",min:0,dflt:0,editType:"calc"},marker:{outliercolor:{valType:"color",dflt:"rgba(0, 0, 0, 0)",editType:"style"},symbol:s({},l.symbol,{arrayOk:!1,editType:"plot"}),opacity:s({},l.opacity,{arrayOk:!1,dflt:1,editType:"style"}),size:s({},l.size,{arrayOk:!1,editType:"calc"}),color:s({},l.color,{arrayOk:!1,editType:"style"}),line:{color:s({},c.color,{arrayOk:!1,dflt:a.defaultLine,editType:"style"}),width:s({},c.width,{arrayOk:!1,dflt:0,editType:"style"}),outliercolor:{valType:"color",editType:"style"},outlierwidth:{valType:"number",min:0,dflt:1,editType:"style"},editType:"style"},editType:"plot"},line:{color:{valType:"color",editType:"style"},width:{valType:"number",min:0,dflt:2,editType:"style"},editType:"plot"},fillcolor:n.fillcolor,whiskerwidth:{valType:"number",min:0,max:1,dflt:.5,editType:"calc"},offsetgroup:i.offsetgroup,alignmentgroup:i.alignmentgroup,selected:{marker:n.selected.marker,editType:"style"},unselected:{marker:n.unselected.marker,editType:"style"},text:s({},n.text,{}),hovertext:s({},n.hovertext,{}),hovertemplate:o({}),hoveron:{valType:"flaglist",flags:["boxes","points"],dflt:"boxes+points",editType:"style"}}},{"../../components/color/attributes":642,"../../lib/extend":768,"../../plots/template_attributes":906,"../bar/attributes":921,"../scatter/attributes":1187}],947:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../plots/cartesian/axes"),a=t("../../plots/cartesian/align_period"),o=t("../../lib"),s=t("../../constants/numerical").BADNUM,l=o._;e.exports=function(t,e){var r,c,y,x,b,_,w,T=t._fullLayout,k=i.getFromId(t,e.xaxis||"x"),M=i.getFromId(t,e.yaxis||"y"),A=[],S="violin"===e.type?"_numViolins":"_numBoxes";"h"===e.orientation?(y=k,x="x",b=M,_="y",w=!!e.yperiodalignment):(y=M,x="y",b=k,_="x",w=!!e.xperiodalignment);var E,C,L,I,P,z,O=function(t,e,r,i){var s,l=e+"0"in t,c="d"+e in t;if(e in t||l&&c){var u=r.makeCalcdata(t,e);return[a(t,r,e,u),u]}s=l?t[e+"0"]:"name"in t&&("category"===r.type||n(t.name)&&-1!==["linear","log"].indexOf(r.type)||o.isDateTime(t.name)&&"date"===r.type)?t.name:i;for(var f="multicategory"===r.type?r.r2c_just_indices(s):r.d2c(s,0,t[e+"calendar"]),h=t._length,p=new Array(h),d=0;dE.uf};if(e._hasPreCompStats){var U=e[x],V=function(t){return y.d2c((e[t]||[])[r])},q=1/0,H=-1/0;for(r=0;r=E.q1&&E.q3>=E.med){var Y=V("lowerfence");E.lf=Y!==s&&Y<=E.q1?Y:p(E,L,I);var W=V("upperfence");E.uf=W!==s&&W>=E.q3?W:d(E,L,I);var X=V("mean");E.mean=X!==s?X:I?o.mean(L,I):(E.q1+E.q3)/2;var Z=V("sd");E.sd=X!==s&&Z>=0?Z:I?o.stdev(L,I,E.mean):E.q3-E.q1,E.lo=g(E),E.uo=m(E);var J=V("notchspan");J=J!==s&&J>0?J:v(E,I),E.ln=E.med-J,E.un=E.med+J;var K=E.lf,Q=E.uf;e.boxpoints&&L.length&&(K=Math.min(K,L[0]),Q=Math.max(Q,L[I-1])),e.notched&&(K=Math.min(K,E.ln),Q=Math.max(Q,E.un)),E.min=K,E.max=Q}else{var $;o.warn(["Invalid input - make sure that q1 <= median <= q3","q1 = "+E.q1,"median = "+E.med,"q3 = "+E.q3].join("\n")),$=E.med!==s?E.med:E.q1!==s?E.q3!==s?(E.q1+E.q3)/2:E.q1:E.q3!==s?E.q3:0,E.med=$,E.q1=E.q3=$,E.lf=E.uf=$,E.mean=E.sd=$,E.ln=E.un=$,E.min=E.max=$}q=Math.min(q,E.min),H=Math.max(H,E.max),E.pts2=C.filter(j),A.push(E)}}e._extremes[y._id]=i.findExtremes(y,[q,H],{padded:!0})}else{var tt=y.makeCalcdata(e,x),et=function(t,e){for(var r=t.length,n=new Array(r+1),i=0;i=0&&it0){var ut,ft;if((E={}).pos=E[_]=B[r],C=E.pts=nt[r].sort(f),I=(L=E[x]=C.map(h)).length,E.min=L[0],E.max=L[I-1],E.mean=o.mean(L,I),E.sd=o.stdev(L,I,E.mean),E.med=o.interp(L,.5),I%2&&(lt||ct))lt?(ut=L.slice(0,I/2),ft=L.slice(I/2+1)):ct&&(ut=L.slice(0,I/2+1),ft=L.slice(I/2)),E.q1=o.interp(ut,.5),E.q3=o.interp(ft,.5);else E.q1=o.interp(L,.25),E.q3=o.interp(L,.75);E.lf=p(E,L,I),E.uf=d(E,L,I),E.lo=g(E),E.uo=m(E);var ht=v(E,I);E.ln=E.med-ht,E.un=E.med+ht,at=Math.min(at,E.ln),ot=Math.max(ot,E.un),E.pts2=C.filter(j),A.push(E)}e._extremes[y._id]=i.findExtremes(y,e.notched?tt.concat([at,ot]):tt,{padded:!0})}return function(t,e){if(o.isArrayOrTypedArray(e.selectedpoints))for(var r=0;r0?(A[0].t={num:T[S],dPos:N,posLetter:_,valLetter:x,labels:{med:l(t,"median:"),min:l(t,"min:"),q1:l(t,"q1:"),q3:l(t,"q3:"),max:l(t,"max:"),mean:"sd"===e.boxmean?l(t,"mean \xb1 \u03c3:"):l(t,"mean:"),lf:l(t,"lower fence:"),uf:l(t,"upper fence:")}},T[S]++,A):[{t:{empty:!0}}]};var c={text:"tx",hovertext:"htx"};function u(t,e,r){for(var n in c)o.isArrayOrTypedArray(e[n])&&(Array.isArray(r)?o.isArrayOrTypedArray(e[n][r[0]])&&(t[c[n]]=e[n][r[0]][r[1]]):t[c[n]]=e[n][r])}function f(t,e){return t.v-e.v}function h(t){return t.v}function p(t,e,r){return 0===r?t.q1:Math.min(t.q1,e[Math.min(o.findBin(2.5*t.q1-1.5*t.q3,e,!0)+1,r-1)])}function d(t,e,r){return 0===r?t.q3:Math.max(t.q3,e[Math.max(o.findBin(2.5*t.q3-1.5*t.q1,e),0)])}function g(t){return 4*t.q1-3*t.q3}function m(t){return 4*t.q3-3*t.q1}function v(t,e){return 0===e?0:1.57*(t.q3-t.q1)/Math.sqrt(e)}},{"../../constants/numerical":753,"../../lib":778,"../../plots/cartesian/align_period":825,"../../plots/cartesian/axes":828,"fast-isnumeric":241}],948:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../lib"),a=t("../../plots/cartesian/constraints").getAxisGroup,o=["v","h"];function s(t,e,r,o){var s,l,c,u=e.calcdata,f=e._fullLayout,h=o._id,p=h.charAt(0),d=[],g=0;for(s=0;s1,b=1-f[t+"gap"],_=1-f[t+"groupgap"];for(s=0;s0){var H=E.pointpos,G=E.jitter,Y=E.marker.size/2,W=0;H+G>=0&&((W=V*(H+G))>A?(q=!0,j=Y,B=W):W>R&&(j=Y,B=A)),W<=A&&(B=A);var X=0;H-G<=0&&((X=-V*(H-G))>S?(q=!0,U=Y,N=X):X>F&&(U=Y,N=S)),X<=S&&(N=S)}else B=A,N=S;var Z=new Array(c.length);for(l=0;l0?(m="v",v=x>0?Math.min(_,b):Math.min(b)):x>0?(m="h",v=Math.min(_)):v=0;if(v){e._length=v;var S=r("orientation",m);e._hasPreCompStats?"v"===S&&0===x?(r("x0",0),r("dx",1)):"h"===S&&0===y&&(r("y0",0),r("dy",1)):"v"===S&&0===x?r("x0"):"h"===S&&0===y&&r("y0"),i.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x","y"],a)}else e.visible=!1}function f(t,e,r,i){var a=i.prefix,o=n.coerce2(t,e,c,"marker.outliercolor"),s=r("marker.line.outliercolor"),l="outliers";e._hasPreCompStats?l="all":(o||s)&&(l="suspectedoutliers");var u=r(a+"points",l);u?(r("jitter","all"===u?.3:0),r("pointpos","all"===u?-1.5:0),r("marker.symbol"),r("marker.opacity"),r("marker.size"),r("marker.color",e.line.color),r("marker.line.color"),r("marker.line.width"),"suspectedoutliers"===u&&(r("marker.line.outliercolor",e.marker.color),r("marker.line.outlierwidth")),r("selected.marker.color"),r("unselected.marker.color"),r("selected.marker.size"),r("unselected.marker.size"),r("text"),r("hovertext")):delete e.marker;var f=r("hoveron");"all"!==f&&-1===f.indexOf("points")||r("hovertemplate"),n.coerceSelectionMarkerOpacity(e,r)}e.exports={supplyDefaults:function(t,e,r,i){function s(r,i){return n.coerce(t,e,c,r,i)}if(u(t,e,s,i),!1!==e.visible){o(t,e,i,s);var l=e._hasPreCompStats;l&&(s("lowerfence"),s("upperfence")),s("line.color",(t.marker||{}).color||r),s("line.width"),s("fillcolor",a.addOpacity(e.line.color,.5));var h=!1;if(l){var p=s("mean"),d=s("sd");p&&p.length&&(h=!0,d&&d.length&&(h="sd"))}s("boxmean",h),s("whiskerwidth"),s("width"),s("quartilemethod");var g=!1;if(l){var m=s("notchspan");m&&m.length&&(g=!0)}else n.validate(t.notchwidth,c.notchwidth)&&(g=!0);s("notched",g)&&s("notchwidth"),f(t,e,s,{prefix:"box"})}},crossTraceDefaults:function(t,e){var r,i;function a(t){return n.coerce(i._input,i,c,t)}for(var o=0;ot.lo&&(x.so=!0)}return a}));h.enter().append("path").classed("point",!0),h.exit().remove(),h.call(a.translatePoints,o,s)}function l(t,e,r,a){var o,s,l=e.val,c=e.pos,u=!!c.rangebreaks,f=a.bPos,h=a.bPosPxOffset||0,p=r.boxmean||(r.meanline||{}).visible;Array.isArray(a.bdPos)?(o=a.bdPos[0],s=a.bdPos[1]):(o=a.bdPos,s=a.bdPos);var d=t.selectAll("path.mean").data("box"===r.type&&r.boxmean||"violin"===r.type&&r.box.visible&&r.meanline.visible?i.identity:[]);d.enter().append("path").attr("class","mean").style({fill:"none","vector-effect":"non-scaling-stroke"}),d.exit().remove(),d.each((function(t){var e=c.c2l(t.pos+f,!0),i=c.l2p(e-o)+h,a=c.l2p(e+s)+h,d=u?(i+a)/2:c.l2p(e)+h,g=l.c2p(t.mean,!0),m=l.c2p(t.mean-t.sd,!0),v=l.c2p(t.mean+t.sd,!0);"h"===r.orientation?n.select(this).attr("d","M"+g+","+i+"V"+a+("sd"===p?"m0,0L"+m+","+d+"L"+g+","+i+"L"+v+","+d+"Z":"")):n.select(this).attr("d","M"+i+","+g+"H"+a+("sd"===p?"m0,0L"+d+","+m+"L"+i+","+g+"L"+d+","+v+"Z":""))}))}e.exports={plot:function(t,e,r,a){var c=e.xaxis,u=e.yaxis;i.makeTraceGroups(a,r,"trace boxes").each((function(t){var e,r,i=n.select(this),a=t[0],f=a.t,h=a.trace;(f.wdPos=f.bdPos*h.whiskerwidth,!0!==h.visible||f.empty)?i.remove():("h"===h.orientation?(e=u,r=c):(e=c,r=u),o(i,{pos:e,val:r},h,f),s(i,{x:c,y:u},h,f),l(i,{pos:e,val:r},h,f))}))},plotBoxAndWhiskers:o,plotPoints:s,plotBoxMean:l}},{"../../components/drawing":665,"../../lib":778,d3:169}],956:[function(t,e,r){"use strict";e.exports=function(t,e){var r,n,i=t.cd,a=t.xaxis,o=t.yaxis,s=[];if(!1===e)for(r=0;r=10)return null;for(var i=1/0,a=-1/0,o=e.length,s=0;s0?Math.floor:Math.ceil,P=C>0?Math.ceil:Math.floor,z=C>0?Math.min:Math.max,O=C>0?Math.max:Math.min,D=I(S+L),R=P(E-L),F=[[f=A(S)]];for(a=D;a*C=0;i--)a[u-i]=t[f][i],o[u-i]=e[f][i];for(s.push({x:a,y:o,bicubic:l}),i=f,a=[],o=[];i>=0;i--)a[f-i]=t[i][0],o[f-i]=e[i][0];return s.push({x:a,y:o,bicubic:c}),s}},{}],970:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../lib/extend").extendFlat;e.exports=function(t,e,r){var a,o,s,l,c,u,f,h,p,d,g,m,v,y,x=t["_"+e],b=t[e+"axis"],_=b._gridlines=[],w=b._minorgridlines=[],T=b._boundarylines=[],k=t["_"+r],M=t[r+"axis"];"array"===b.tickmode&&(b.tickvals=x.slice());var A=t._xctrl,S=t._yctrl,E=A[0].length,C=A.length,L=t._a.length,I=t._b.length;n.prepTicks(b),"array"===b.tickmode&&delete b.tickvals;var P=b.smoothing?3:1;function z(n){var i,a,o,s,l,c,u,f,p,d,g,m,v=[],y=[],x={};if("b"===e)for(a=t.b2j(n),o=Math.floor(Math.max(0,Math.min(I-2,a))),s=a-o,x.length=I,x.crossLength=L,x.xy=function(e){return t.evalxy([],e,a)},x.dxy=function(e,r){return t.dxydi([],e,o,r,s)},i=0;i0&&(p=t.dxydi([],i-1,o,0,s),v.push(l[0]+p[0]/3),y.push(l[1]+p[1]/3),d=t.dxydi([],i-1,o,1,s),v.push(f[0]-d[0]/3),y.push(f[1]-d[1]/3)),v.push(f[0]),y.push(f[1]),l=f;else for(i=t.a2i(n),c=Math.floor(Math.max(0,Math.min(L-2,i))),u=i-c,x.length=L,x.crossLength=I,x.xy=function(e){return t.evalxy([],i,e)},x.dxy=function(e,r){return t.dxydj([],c,e,u,r)},a=0;a0&&(g=t.dxydj([],c,a-1,u,0),v.push(l[0]+g[0]/3),y.push(l[1]+g[1]/3),m=t.dxydj([],c,a-1,u,1),v.push(f[0]-m[0]/3),y.push(f[1]-m[1]/3)),v.push(f[0]),y.push(f[1]),l=f;return x.axisLetter=e,x.axis=b,x.crossAxis=M,x.value=n,x.constvar=r,x.index=h,x.x=v,x.y=y,x.smoothing=M.smoothing,x}function O(n){var i,a,o,s,l,c=[],u=[],f={};if(f.length=x.length,f.crossLength=k.length,"b"===e)for(o=Math.max(0,Math.min(I-2,n)),l=Math.min(1,Math.max(0,n-o)),f.xy=function(e){return t.evalxy([],e,n)},f.dxy=function(e,r){return t.dxydi([],e,o,r,l)},i=0;ix.length-1||_.push(i(O(o),{color:b.gridcolor,width:b.gridwidth}));for(h=u;hx.length-1||g<0||g>x.length-1))for(m=x[s],v=x[g],a=0;ax[x.length-1]||w.push(i(z(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&T.push(i(O(0),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&T.push(i(O(x.length-1),{color:b.endlinecolor,width:b.endlinewidth}))}else{for(l=5e-15,u=(c=[Math.floor((x[x.length-1]-b.tick0)/b.dtick*(1+l)),Math.ceil((x[0]-b.tick0)/b.dtick/(1+l))].sort((function(t,e){return t-e})))[0],f=c[1],h=u;h<=f;h++)p=b.tick0+b.dtick*h,_.push(i(z(p),{color:b.gridcolor,width:b.gridwidth}));for(h=u-1;hx[x.length-1]||w.push(i(z(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&T.push(i(z(x[0]),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&T.push(i(z(x[x.length-1]),{color:b.endlinecolor,width:b.endlinewidth}))}}},{"../../lib/extend":768,"../../plots/cartesian/axes":828}],971:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../lib/extend").extendFlat;e.exports=function(t,e){var r,a,o,s=e._labels=[],l=e._gridlines;for(r=0;re.length&&(t=t.slice(0,e.length)):t=[],i=0;i90&&(p-=180,l=-l),{angle:p,flip:l,p:t.c2p(n,e,r),offsetMultplier:c}}},{}],985:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/drawing"),a=t("./map_1d_array"),o=t("./makepath"),s=t("./orient_text"),l=t("../../lib/svg_text_utils"),c=t("../../lib"),u=c.strRotate,f=c.strTranslate,h=t("../../constants/alignment");function p(t,e,r,i,s,l){var c="const-"+s+"-lines",u=r.selectAll("."+c).data(l);u.enter().append("path").classed(c,!0).style("vector-effect","non-scaling-stroke"),u.each((function(r){var i=r,s=i.x,l=i.y,c=a([],s,t.c2p),u=a([],l,e.c2p),f="M"+o(c,u,i.smoothing);n.select(this).attr("d",f).style("stroke-width",i.width).style("stroke",i.color).style("fill","none")})),u.exit().remove()}function d(t,e,r,a,o,c,h,p){var d=c.selectAll("text."+p).data(h);d.enter().append("text").classed(p,!0);var g=0,m={};return d.each((function(o,c){var h;if("auto"===o.axis.tickangle)h=s(a,e,r,o.xy,o.dxy);else{var p=(o.axis.tickangle+180)*Math.PI/180;h=s(a,e,r,o.xy,[Math.cos(p),Math.sin(p)])}c||(m={angle:h.angle,flip:h.flip});var d=(o.endAnchor?-1:1)*h.flip,v=n.select(this).attr({"text-anchor":d>0?"start":"end","data-notex":1}).call(i.font,o.font).text(o.text).call(l.convertToTspans,t),y=i.bBox(this);v.attr("transform",f(h.p[0],h.p[1])+u(h.angle)+f(o.axis.labelpadding*d,.3*y.height)),g=Math.max(g,y.width+o.axis.labelpadding)})),d.exit().remove(),m.maxExtent=g,m}e.exports=function(t,e,r,i){var l=e.xaxis,u=e.yaxis,f=t._fullLayout._clips;c.makeTraceGroups(i,r,"trace").each((function(e){var r=n.select(this),i=e[0],h=i.trace,g=h.aaxis,m=h.baxis,y=c.ensureSingle(r,"g","minorlayer"),x=c.ensureSingle(r,"g","majorlayer"),b=c.ensureSingle(r,"g","boundarylayer"),_=c.ensureSingle(r,"g","labellayer");r.style("opacity",h.opacity),p(l,u,x,g,"a",g._gridlines),p(l,u,x,m,"b",m._gridlines),p(l,u,y,g,"a",g._minorgridlines),p(l,u,y,m,"b",m._minorgridlines),p(l,u,b,g,"a-boundary",g._boundarylines),p(l,u,b,m,"b-boundary",m._boundarylines);var w=d(t,l,u,h,i,_,g._labels,"a-label"),T=d(t,l,u,h,i,_,m._labels,"b-label");!function(t,e,r,n,i,a,o,l){var u,f,h,p,d=c.aggNums(Math.min,null,r.a),g=c.aggNums(Math.max,null,r.a),m=c.aggNums(Math.min,null,r.b),y=c.aggNums(Math.max,null,r.b);u=.5*(d+g),f=m,h=r.ab2xy(u,f,!0),p=r.dxyda_rough(u,f),void 0===o.angle&&c.extendFlat(o,s(r,i,a,h,r.dxydb_rough(u,f)));v(t,e,r,n,h,p,r.aaxis,i,a,o,"a-title"),u=d,f=.5*(m+y),h=r.ab2xy(u,f,!0),p=r.dxydb_rough(u,f),void 0===l.angle&&c.extendFlat(l,s(r,i,a,h,r.dxyda_rough(u,f)));v(t,e,r,n,h,p,r.baxis,i,a,l,"b-title")}(t,_,h,i,l,u,w,T),function(t,e,r,n,i){var s,l,u,f,h=r.select("#"+t._clipPathId);h.size()||(h=r.append("clipPath").classed("carpetclip",!0));var p=c.ensureSingle(h,"path","carpetboundary"),d=e.clipsegments,g=[];for(f=0;f90&&y<270,b=n.select(this);b.text(h.title.text).call(l.convertToTspans,t),x&&(_=(-l.lineCount(b)+m)*g*a-_),b.attr("transform",f(e.p[0],e.p[1])+u(e.angle)+f(0,_)).attr("text-anchor","middle").call(i.font,h.title.font)})),b.exit().remove()}},{"../../components/drawing":665,"../../constants/alignment":745,"../../lib":778,"../../lib/svg_text_utils":803,"./makepath":982,"./map_1d_array":983,"./orient_text":984,d3:169}],986:[function(t,e,r){"use strict";var n=t("./constants"),i=t("../../lib/search").findBin,a=t("./compute_control_points"),o=t("./create_spline_evaluator"),s=t("./create_i_derivative_evaluator"),l=t("./create_j_derivative_evaluator");e.exports=function(t){var e=t._a,r=t._b,c=e.length,u=r.length,f=t.aaxis,h=t.baxis,p=e[0],d=e[c-1],g=r[0],m=r[u-1],v=e[e.length-1]-e[0],y=r[r.length-1]-r[0],x=v*n.RELATIVE_CULL_TOLERANCE,b=y*n.RELATIVE_CULL_TOLERANCE;p-=x,d+=x,g-=b,m+=b,t.isVisible=function(t,e){return t>p&&tg&&ed||em},t.setScale=function(){var e=t._x,r=t._y,n=a(t._xctrl,t._yctrl,e,r,f.smoothing,h.smoothing);t._xctrl=n[0],t._yctrl=n[1],t.evalxy=o([t._xctrl,t._yctrl],c,u,f.smoothing,h.smoothing),t.dxydi=s([t._xctrl,t._yctrl],f.smoothing,h.smoothing),t.dxydj=l([t._xctrl,t._yctrl],f.smoothing,h.smoothing)},t.i2a=function(t){var r=Math.max(0,Math.floor(t[0]),c-2),n=t[0]-r;return(1-n)*e[r]+n*e[r+1]},t.j2b=function(t){var e=Math.max(0,Math.floor(t[1]),c-2),n=t[1]-e;return(1-n)*r[e]+n*r[e+1]},t.ij2ab=function(e){return[t.i2a(e[0]),t.j2b(e[1])]},t.a2i=function(t){var r=Math.max(0,Math.min(i(t,e),c-2)),n=e[r],a=e[r+1];return Math.max(0,Math.min(c-1,r+(t-n)/(a-n)))},t.b2j=function(t){var e=Math.max(0,Math.min(i(t,r),u-2)),n=r[e],a=r[e+1];return Math.max(0,Math.min(u-1,e+(t-n)/(a-n)))},t.ab2ij=function(e){return[t.a2i(e[0]),t.b2j(e[1])]},t.i2c=function(e,r){return t.evalxy([],e,r)},t.ab2xy=function(n,i,a){if(!a&&(ne[c-1]|ir[u-1]))return[!1,!1];var o=t.a2i(n),s=t.b2j(i),l=t.evalxy([],o,s);if(a){var f,h,p,d,g=0,m=0,v=[];ne[c-1]?(f=c-2,h=1,g=(n-e[c-1])/(e[c-1]-e[c-2])):h=o-(f=Math.max(0,Math.min(c-2,Math.floor(o)))),ir[u-1]?(p=u-2,d=1,m=(i-r[u-1])/(r[u-1]-r[u-2])):d=s-(p=Math.max(0,Math.min(u-2,Math.floor(s)))),g&&(t.dxydi(v,f,p,h,d),l[0]+=v[0]*g,l[1]+=v[1]*g),m&&(t.dxydj(v,f,p,h,d),l[0]+=v[0]*m,l[1]+=v[1]*m)}return l},t.c2p=function(t,e,r){return[e.c2p(t[0]),r.c2p(t[1])]},t.p2x=function(t,e,r){return[e.p2c(t[0]),r.p2c(t[1])]},t.dadi=function(t){var r=Math.max(0,Math.min(e.length-2,t));return e[r+1]-e[r]},t.dbdj=function(t){var e=Math.max(0,Math.min(r.length-2,t));return r[e+1]-r[e]},t.dxyda=function(e,r,n,i){var a=t.dxydi(null,e,r,n,i),o=t.dadi(e,n);return[a[0]/o,a[1]/o]},t.dxydb=function(e,r,n,i){var a=t.dxydj(null,e,r,n,i),o=t.dbdj(r,i);return[a[0]/o,a[1]/o]},t.dxyda_rough=function(e,r,n){var i=v*(n||.1),a=t.ab2xy(e+i,r,!0),o=t.ab2xy(e-i,r,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},t.dxydb_rough=function(e,r,n){var i=y*(n||.1),a=t.ab2xy(e,r+i,!0),o=t.ab2xy(e,r-i,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},t.dpdx=function(t){return t._m},t.dpdy=function(t){return t._m}}},{"../../lib/search":798,"./compute_control_points":974,"./constants":975,"./create_i_derivative_evaluator":976,"./create_j_derivative_evaluator":977,"./create_spline_evaluator":978}],987:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e,r){var i,a,o,s=[],l=[],c=t[0].length,u=t.length;function f(e,r){var n,i=0,a=0;return e>0&&void 0!==(n=t[r][e-1])&&(a++,i+=n),e0&&void 0!==(n=t[r-1][e])&&(a++,i+=n),r0&&a0&&i1e-5);return n.log("Smoother converged to",k,"after",M,"iterations"),t}},{"../../lib":778}],988:[function(t,e,r){"use strict";var n=t("../../lib").isArray1D;e.exports=function(t,e,r){var i=r("x"),a=i&&i.length,o=r("y"),s=o&&o.length;if(!a&&!s)return!1;if(e._cheater=!i,a&&!n(i)||s&&!n(o))e._length=null;else{var l=a?i.length:1/0;s&&(l=Math.min(l,o.length)),e.a&&e.a.length&&(l=Math.min(l,e.a.length)),e.b&&e.b.length&&(l=Math.min(l,e.b.length)),e._length=l}return!0}},{"../../lib":778}],989:[function(t,e,r){"use strict";var n=t("../../plots/template_attributes").hovertemplateAttrs,i=t("../scattergeo/attributes"),a=t("../../components/colorscale/attributes"),o=t("../../plots/attributes"),s=t("../../components/color/attributes").defaultLine,l=t("../../lib/extend").extendFlat,c=i.marker.line;e.exports=l({locations:{valType:"data_array",editType:"calc"},locationmode:i.locationmode,z:{valType:"data_array",editType:"calc"},geojson:l({},i.geojson,{}),featureidkey:i.featureidkey,text:l({},i.text,{}),hovertext:l({},i.hovertext,{}),marker:{line:{color:l({},c.color,{dflt:s}),width:l({},c.width,{dflt:1}),editType:"calc"},opacity:{valType:"number",arrayOk:!0,min:0,max:1,dflt:1,editType:"style"},editType:"calc"},selected:{marker:{opacity:i.selected.marker.opacity,editType:"plot"},editType:"plot"},unselected:{marker:{opacity:i.unselected.marker.opacity,editType:"plot"},editType:"plot"},hoverinfo:l({},o.hoverinfo,{editType:"calc",flags:["location","z","text","name"]}),hovertemplate:n(),showlegend:l({},o.showlegend,{dflt:!1})},a("",{cLetter:"z",editTypeOverride:"calc"}))},{"../../components/color/attributes":642,"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../scattergeo/attributes":1229}],990:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../constants/numerical").BADNUM,a=t("../../components/colorscale/calc"),o=t("../scatter/arrays_to_calcdata"),s=t("../scatter/calc_selection");function l(t){return t&&"string"==typeof t}e.exports=function(t,e){var r,c=e._length,u=new Array(c);r=e.geojson?function(t){return l(t)||n(t)}:l;for(var f=0;f")}(t,f,o),[t]}},{"../../lib":778,"../../plots/cartesian/axes":828,"./attributes":989}],994:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../heatmap/colorbar"),calc:t("./calc"),calcGeoJSON:t("./plot").calcGeoJSON,plot:t("./plot").plot,style:t("./style").style,styleOnSelect:t("./style").styleOnSelect,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("./select"),moduleType:"trace",name:"choropleth",basePlotModule:t("../../plots/geo"),categories:["geo","noOpacity","showLegend"],meta:{}}},{"../../plots/geo":860,"../heatmap/colorbar":1068,"./attributes":989,"./calc":990,"./defaults":991,"./event_data":992,"./hover":993,"./plot":995,"./select":996,"./style":997}],995:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../lib/geo_location_utils"),o=t("../../lib/topojson_utils").getTopojsonFeatures,s=t("../../plots/cartesian/autorange").findExtremes,l=t("./style").style;e.exports={calcGeoJSON:function(t,e){for(var r=t[0].trace,n=e[r.geo],i=n._subplot,l=r.locationmode,c=r._length,u="geojson-id"===l?a.extractTraceFeature(t):o(r,i.topojson),f=[],h=[],p=0;p<c;p++){var d=t[p],g="geojson-id"===l?d.fOut:a.locationToFeature(l,d.loc,u);if(g){d.geojson=g,d.ct=g.properties.ct,d._polygons=a.feature2polygons(g);var m=a.computeBbox(g);f.push(m[0],m[2]),h.push(m[1],m[3])}else d.geojson=null}if("geojson"===n.fitbounds&&"geojson-id"===l){var v=a.computeBbox(a.getTraceGeojson(r));f=[v[0],v[2]],h=[v[1],v[3]]}var y={padded:!0};r._extremes.lon=s(n.lonaxis._ax,f,y),r._extremes.lat=s(n.lataxis._ax,h,y)},plot:function(t,e,r){var a=e.layers.backplot.select(".choroplethlayer");i.makeTraceGroups(a,r,"trace choropleth").each((function(e){var r=n.select(this).selectAll("path.choroplethlocation").data(i.identity);r.enter().append("path").classed("choroplethlocation",!0),r.exit().remove(),l(t,e)}))}}},{"../../lib":778,"../../lib/geo_location_utils":771,"../../lib/topojson_utils":806,"../../plots/cartesian/autorange":827,"./style":997,d3:169}],996:[function(t,e,r){"use strict";e.exports=function(t,e){var r,n,i,a,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[];if(!1===e)for(r=0;r<s.length;r++)s[r].selected=0;else for(r=0;r<s.length;r++)(i=(n=s[r]).ct)&&(a=l.c2p(i),o=c.c2p(i),e.contains([a,o],null,r,t)?(u.push({pointNumber:r,lon:i[0],lat:i[1]}),n.selected=1):n.selected=0);return u}},{}],997:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/color"),a=t("../../components/drawing"),o=t("../../components/colorscale");function s(t,e){var r=e[0].trace,s=e[0].node3.selectAll(".choroplethlocation"),l=r.marker||{},c=l.line||{},u=o.makeColorScaleFuncFromTrace(r);s.each((function(t){n.select(this).attr("fill",u(t.z)).call(i.stroke,t.mlc||c.color).call(a.dashLine,"",t.mlw||c.width||0).style("opacity",l.opacity)})),a.selectedPointStyle(s,r,t)}e.exports={style:function(t,e){e&&s(t,e)},styleOnSelect:function(t,e){var r=e[0].node3,n=e[0].trace;n.selectedpoints?a.selectedPointStyle(r.selectAll(".choroplethlocation"),n,t):s(t,e)}}},{"../../components/color":643,"../../components/colorscale":655,"../../components/drawing":665,d3:169}],998:[function(t,e,r){"use strict";var n=t("../choropleth/attributes"),i=t("../../components/colorscale/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat;e.exports=s({locations:{valType:"data_array",editType:"calc"},z:{valType:"data_array",editType:"calc"},geojson:{valType:"any",editType:"calc"},featureidkey:s({},n.featureidkey,{}),below:{valType:"string",editType:"plot"},text:n.text,hovertext:n.hovertext,marker:{line:{color:s({},n.marker.line.color,{editType:"plot"}),width:s({},n.marker.line.width,{editType:"plot"}),editType:"calc"},opacity:s({},n.marker.opacity,{editType:"plot"}),editType:"calc"},selected:{marker:{opacity:s({},n.selected.marker.opacity,{editType:"plot"}),editType:"plot"},editType:"plot"},unselected:{marker:{opacity:s({},n.unselected.marker.opacity,{editType:"plot"}),editType:"plot"},editType:"plot"},hoverinfo:n.hoverinfo,hovertemplate:a({},{keys:["properties"]}),showlegend:s({},o.showlegend,{dflt:!1})},i("",{cLetter:"z",editTypeOverride:"calc"}))},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../choropleth/attributes":989}],999:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib"),a=t("../../components/colorscale"),o=t("../../components/drawing"),s=t("../../lib/geojson_utils").makeBlank,l=t("../../lib/geo_location_utils");function c(t){var e,r=t[0].trace,n=r._opts;if(r.selectedpoints){for(var a=o.makeSelectedPointStyleFns(r),s=0;s<t.length;s++){var l=t[s];l.fOut&&(l.fOut.properties.mo2=a.selectedOpacityFn(l))}e={type:"identity",property:"mo2"}}else e=i.isArrayOrTypedArray(r.marker.opacity)?{type:"identity",property:"mo"}:r.marker.opacity;return i.extendFlat(n.fill.paint,{"fill-opacity":e}),i.extendFlat(n.line.paint,{"line-opacity":e}),n}e.exports={convert:function(t){var e=t[0].trace,r=!0===e.visible&&0!==e._length,o={layout:{visibility:"none"},paint:{}},u={layout:{visibility:"none"},paint:{}},f=e._opts={fill:o,line:u,geojson:s()};if(!r)return f;var h=l.extractTraceFeature(t);if(!h)return f;var p,d,g,m=a.makeColorScaleFuncFromTrace(e),v=e.marker,y=v.line||{};i.isArrayOrTypedArray(v.opacity)&&(p=function(t){var e=t.mo;return n(e)?+i.constrain(e,0,1):0}),i.isArrayOrTypedArray(y.color)&&(d=function(t){return t.mlc}),i.isArrayOrTypedArray(y.width)&&(g=function(t){return t.mlw});for(var x=0;x<t.length;x++){var b=t[x],_=b.fOut;if(_){var w=_.properties;w.fc=m(b.z),p&&(w.mo=p(b)),d&&(w.mlc=d(b)),g&&(w.mlw=g(b)),b.ct=w.ct,b._polygons=l.feature2polygons(_)}}var T=p?{type:"identity",property:"mo"}:v.opacity;return i.extendFlat(o.paint,{"fill-color":{type:"identity",property:"fc"},"fill-opacity":T}),i.extendFlat(u.paint,{"line-color":d?{type:"identity",property:"mlc"}:y.color,"line-width":g?{type:"identity",property:"mlw"}:y.width,"line-opacity":T}),o.layout.visibility="visible",u.layout.visibility="visible",f.geojson={type:"FeatureCollection",features:h},c(t),f},convertOnSelect:c}},{"../../components/colorscale":655,"../../components/drawing":665,"../../lib":778,"../../lib/geo_location_utils":771,"../../lib/geojson_utils":772,"fast-isnumeric":241}],1e3:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/colorscale/defaults"),a=t("./attributes");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s("locations"),c=s("z"),u=s("geojson");n.isArrayOrTypedArray(l)&&l.length&&n.isArrayOrTypedArray(c)&&c.length&&("string"==typeof u&&""!==u||n.isPlainObject(u))?(s("featureidkey"),e._length=Math.min(l.length,c.length),s("below"),s("text"),s("hovertext"),s("hovertemplate"),s("marker.line.width")&&s("marker.line.color"),s("marker.opacity"),i(t,e,o,s,{prefix:"",cLetter:"z"}),n.coerceSelectionMarkerOpacity(e,s)):e.visible=!1}},{"../../components/colorscale/defaults":653,"../../lib":778,"./attributes":998}],1001:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../heatmap/colorbar"),calc:t("../choropleth/calc"),plot:t("./plot"),hoverPoints:t("../choropleth/hover"),eventData:t("../choropleth/event_data"),selectPoints:t("../choropleth/select"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.updateOnSelect(e)},getBelow:function(t,e){for(var r=e.getMapLayers(),n=r.length-2;n>=0;n--){var i=r[n].id;if("string"==typeof i&&0===i.indexOf("water"))for(var a=n+1;a<r.length;a++)if("string"==typeof(i=r[a].id)&&-1===i.indexOf("plotly-"))return i}},moduleType:"trace",name:"choroplethmapbox",basePlotModule:t("../../plots/mapbox"),categories:["mapbox","gl","noOpacity","showLegend"],meta:{hr_name:"choropleth_mapbox"}}},{"../../plots/mapbox":885,"../choropleth/calc":990,"../choropleth/event_data":992,"../choropleth/hover":993,"../choropleth/select":996,"../heatmap/colorbar":1068,"./attributes":998,"./defaults":1e3,"./plot":1002}],1002:[function(t,e,r){"use strict";var n=t("./convert").convert,i=t("./convert").convertOnSelect,a=t("../../plots/mapbox/constants").traceLayerPrefix;function o(t,e){this.type="choroplethmapbox",this.subplot=t,this.uid=e,this.sourceId="source-"+e,this.layerList=[["fill",a+e+"-fill"],["line",a+e+"-line"]],this.below=null}var s=o.prototype;s.update=function(t){this._update(n(t))},s.updateOnSelect=function(t){this._update(i(t))},s._update=function(t){var e=this.subplot,r=this.layerList,n=e.belowLookup["trace-"+this.uid];e.map.getSource(this.sourceId).setData(t.geojson),n!==this.below&&(this._removeLayers(),this._addLayers(t,n),this.below=n);for(var i=0;i<r.length;i++){var a=r[i],o=a[0],s=a[1],l=t[o];e.setOptions(s,"setLayoutProperty",l.layout),"visible"===l.layout.visibility&&e.setOptions(s,"setPaintProperty",l.paint)}},s._addLayers=function(t,e){for(var r=this.subplot,n=this.layerList,i=this.sourceId,a=0;a<n.length;a++){var o=n[a],s=o[0],l=t[s];r.addLayer({type:s,id:o[1],source:i,layout:l.layout,paint:l.paint},e)}},s._removeLayers=function(){for(var t=this.subplot.map,e=this.layerList,r=e.length-1;r>=0;r--)t.removeLayer(e[r][1])},s.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,i=new o(t,r.uid),a=i.sourceId,s=n(e),l=i.below=t.belowLookup["trace-"+r.uid];return t.map.addSource(a,{type:"geojson",data:s.geojson}),i._addLayers(s,l),e[0].trace._glTrace=i,i}},{"../../plots/mapbox/constants":883,"./convert":999}],1003:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../mesh3d/attributes"),o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat,l={x:{valType:"data_array",editType:"calc+clearAxisTypes"},y:{valType:"data_array",editType:"calc+clearAxisTypes"},z:{valType:"data_array",editType:"calc+clearAxisTypes"},u:{valType:"data_array",editType:"calc"},v:{valType:"data_array",editType:"calc"},w:{valType:"data_array",editType:"calc"},sizemode:{valType:"enumerated",values:["scaled","absolute"],editType:"calc",dflt:"scaled"},sizeref:{valType:"number",editType:"calc",min:0},anchor:{valType:"enumerated",editType:"calc",values:["tip","tail","cm","center"],dflt:"cm"},text:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertemplate:i({editType:"calc"},{keys:["norm"]}),showlegend:s({},o.showlegend,{dflt:!1})};s(l,n("",{colorAttr:"u/v/w norm",showScaleDflt:!0,editTypeOverride:"calc"}));["opacity","lightposition","lighting"].forEach((function(t){l[t]=a[t]})),l.hoverinfo=s({},o.hoverinfo,{editType:"calc",flags:["x","y","z","u","v","w","norm","text","name"],dflt:"x+y+z+norm+text+name"}),l.transforms=void 0,e.exports=l},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../mesh3d/attributes":1128}],1004:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc");e.exports=function(t,e){for(var r=e.u,i=e.v,a=e.w,o=Math.min(e.x.length,e.y.length,e.z.length,r.length,i.length,a.length),s=-1/0,l=1/0,c=0;co.level||o.starts.length&&a===o.level)}break;case"constraint":if(n.prefixBoundary=!1,n.edgepaths.length)return;var s=n.x.length,l=n.y.length,c=-1/0,u=1/0;for(r=0;r":p>c&&(n.prefixBoundary=!0);break;case"<":(pc||n.starts.length&&h===u)&&(n.prefixBoundary=!0);break;case"][":f=Math.min(p[0],p[1]),h=Math.max(p[0],p[1]),fc&&(n.prefixBoundary=!0)}}}},{}],1011:[function(t,e,r){"use strict";var n=t("../../components/colorscale"),i=t("./make_color_map"),a=t("./end_plus");e.exports={min:"zmin",max:"zmax",calc:function(t,e,r){var o=e.contours,s=e.line,l=o.size||1,c=o.coloring,u=i(e,{isColorbar:!0});if("heatmap"===c){var f=n.extractOpts(e);r._fillgradient=f.reversescale?n.flipScale(f.colorscale):f.colorscale,r._zrange=[f.min,f.max]}else"fill"===c&&(r._fillcolor=u);r._line={color:"lines"===c?u:s.color,width:!1!==o.showlines?s.width:0,dash:s.dash},r._levels={start:o.start,end:a(o),size:l}}}},{"../../components/colorscale":655,"./end_plus":1019,"./make_color_map":1024}],1012:[function(t,e,r){"use strict";e.exports={BOTTOMSTART:[1,9,13,104,713],TOPSTART:[4,6,7,104,713],LEFTSTART:[8,12,14,208,1114],RIGHTSTART:[2,3,11,208,1114],NEWDELTA:[null,[-1,0],[0,-1],[-1,0],[1,0],null,[0,-1],[-1,0],[0,1],[0,1],null,[0,1],[1,0],[1,0],[0,-1]],CHOOSESADDLE:{104:[4,1],208:[2,8],713:[7,13],1114:[11,14]},SADDLEREMAINDER:{1:4,2:8,4:1,7:13,8:2,11:14,13:7,14:11},LABELDISTANCE:2,LABELINCREASE:10,LABELMIN:3,LABELMAX:10,LABELOPTIMIZER:{EDGECOST:1,ANGLECOST:1,NEIGHBORCOST:5,SAMELEVELFACTOR:10,SAMELEVELDISTANCE:5,MAXCOST:100,INITIALSEARCHPOINTS:10,ITERATIONS:5}}},{}],1013:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("./label_defaults"),a=t("../../components/color"),o=a.addOpacity,s=a.opacity,l=t("../../constants/filter_ops"),c=l.CONSTRAINT_REDUCTION,u=l.COMPARISON_OPS2;e.exports=function(t,e,r,a,l,f){var h,p,d,g=e.contours,m=r("contours.operation");(g._operation=c[m],function(t,e){var r;-1===u.indexOf(e.operation)?(t("contours.value",[0,1]),Array.isArray(e.value)?e.value.length>2?e.value=e.value.slice(2):0===e.length?e.value=[0,1]:e.length<2?(r=parseFloat(e.value[0]),e.value=[r,r+1]):e.value=[parseFloat(e.value[0]),parseFloat(e.value[1])]:n(e.value)&&(r=parseFloat(e.value),e.value=[r,r+1])):(t("contours.value",0),n(e.value)||(Array.isArray(e.value)?e.value=parseFloat(e.value[0]):e.value=0))}(r,g),"="===m?h=g.showlines=!0:(h=r("contours.showlines"),d=r("fillcolor",o((t.line||{}).color||l,.5))),h)&&(p=r("line.color",d&&s(d)?o(e.fillcolor,1):l),r("line.width",2),r("line.dash"));r("line.smoothing"),i(r,a,p,f)}},{"../../components/color":643,"../../constants/filter_ops":749,"./label_defaults":1023,"fast-isnumeric":241}],1014:[function(t,e,r){"use strict";var n=t("../../constants/filter_ops"),i=t("fast-isnumeric");function a(t,e){var r,a=Array.isArray(e);function o(t){return i(t)?+t:null}return-1!==n.COMPARISON_OPS2.indexOf(t)?r=o(a?e[0]:e):-1!==n.INTERVAL_OPS.indexOf(t)?r=a?[o(e[0]),o(e[1])]:[o(e),o(e)]:-1!==n.SET_OPS.indexOf(t)&&(r=a?e.map(o):[o(e)]),r}function o(t){return function(e){e=a(t,e);var r=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]);return{start:r,end:n,size:n-r}}}function s(t){return function(e){return{start:e=a(t,e),end:1/0,size:1/0}}}e.exports={"[]":o("[]"),"][":o("]["),">":s(">"),"<":s("<"),"=":s("=")}},{"../../constants/filter_ops":749,"fast-isnumeric":241}],1015:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){var i=n("contours.start"),a=n("contours.end"),o=!1===i||!1===a,s=r("contours.size");!(o?e.autocontour=!0:r("autocontour",!1))&&s||r("ncontours")}},{}],1016:[function(t,e,r){"use strict";var n=t("../../lib");function i(t){return n.extendFlat({},t,{edgepaths:n.extendDeep([],t.edgepaths),paths:n.extendDeep([],t.paths),starts:n.extendDeep([],t.starts)})}e.exports=function(t,e){var r,a,o,s=function(t){return t.reverse()},l=function(t){return t};switch(e){case"=":case"<":return t;case">":for(1!==t.length&&n.warn("Contour data invalid for the specified inequality operation."),a=t[0],r=0;r1e3){n.warn("Too many contours, clipping at 1000",t);break}return l}},{"../../lib":778,"./constraint_mapping":1014,"./end_plus":1019}],1019:[function(t,e,r){"use strict";e.exports=function(t){return t.end+t.size/1e6}},{}],1020:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./constants");function a(t,e,r,n){return Math.abs(t[0]-e[0])20&&e?208===t||1114===t?n=0===r[0]?1:-1:a=0===r[1]?1:-1:-1!==i.BOTTOMSTART.indexOf(t)?a=1:-1!==i.LEFTSTART.indexOf(t)?n=1:-1!==i.TOPSTART.indexOf(t)?a=-1:n=-1;return[n,a]}(f,r,e),p=[s(t,e,[-h[0],-h[1]])],d=t.z.length,g=t.z[0].length,m=e.slice(),v=h.slice();for(c=0;c<1e4;c++){if(f>20?(f=i.CHOOSESADDLE[f][(h[0]||h[1])<0?0:1],t.crossings[u]=i.SADDLEREMAINDER[f]):delete t.crossings[u],!(h=i.NEWDELTA[f])){n.log("Found bad marching index:",f,e,t.level);break}p.push(s(t,e,h)),e[0]+=h[0],e[1]+=h[1],u=e.join(","),a(p[p.length-1],p[p.length-2],o,l)&&p.pop();var y=h[0]&&(e[0]<0||e[0]>g-2)||h[1]&&(e[1]<0||e[1]>d-2);if(e[0]===m[0]&&e[1]===m[1]&&h[0]===v[0]&&h[1]===v[1]||r&&y)break;f=t.crossings[u]}1e4===c&&n.log("Infinite loop in contour?");var x,b,_,w,T,k,M,A,S,E,C,L,I,P,z,O=a(p[0],p[p.length-1],o,l),D=0,R=.2*t.smoothing,F=[],B=0;for(c=1;c=B;c--)if((x=F[c])=B&&x+F[b]A&&S--,t.edgepaths[S]=C.concat(p,E));break}V||(t.edgepaths[A]=p.concat(E))}for(A=0;At?0:1)+(e[0][1]>t?0:2)+(e[1][1]>t?0:4)+(e[1][0]>t?0:8);return 5===r||10===r?t>(e[0][0]+e[0][1]+e[1][0]+e[1][1])/4?5===r?713:1114:5===r?104:208:15===r?0:r}e.exports=function(t){var e,r,a,o,s,l,c,u,f,h=t[0].z,p=h.length,d=h[0].length,g=2===p||2===d;for(r=0;r<p-1;r++)for(o=[],0===r&&(o=o.concat(n.BOTTOMSTART)),r===p-2&&(o=o.concat(n.TOPSTART)),e=0;e<d-1;e++)for(a=o.slice(),0===e&&(a=a.concat(n.LEFTSTART)),e===d-2&&(a=a.concat(n.RIGHTSTART)),s=e+","+r,l=[[h[r][e],h[r][e+1]],[h[r+1][e],h[r+1][e+1]]],f=0;f<t.length;f++)(c=i((u=t[f]).level,l))&&(u.crossings[s]=c,-1!==a.indexOf(c)&&(u.starts.push([e,r]),g&&-1!==a.indexOf(c,a.indexOf(c)+1)&&u.starts.push([e,r])))}},{"./constants":1012}],1026:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../../components/colorscale"),s=t("../../lib/svg_text_utils"),l=t("../../plots/cartesian/axes"),c=t("../../plots/cartesian/set_convert"),u=t("../heatmap/plot"),f=t("./make_crossings"),h=t("./find_all_paths"),p=t("./empty_pathinfo"),d=t("./convert_to_constraints"),g=t("./close_boundaries"),m=t("./constants"),v=m.LABELOPTIMIZER;function y(t,e){var r,n,o,s,l,c,u,f="",h=0,p=t.edgepaths.map((function(t,e){return e})),d=!0;function g(t){return Math.abs(t[1]-e[2][1])<.01}function m(t){return Math.abs(t[0]-e[0][0])<.01}function v(t){return Math.abs(t[0]-e[2][0])<.01}for(;p.length;){for(c=a.smoothopen(t.edgepaths[h],t.smoothing),f+=d?c:c.replace(/^M/,"L"),p.splice(p.indexOf(h),1),r=t.edgepaths[h][t.edgepaths[h].length-1],s=-1,o=0;o<4;o++){if(!r){i.log("Missing end?",h,t);break}for(u=r,Math.abs(u[1]-e[0][1])<.01&&!v(r)?n=e[1]:m(r)?n=e[0]:g(r)?n=e[3]:v(r)&&(n=e[2]),l=0;l<t.edgepaths.length;l++){var y=t.edgepaths[l][0];Math.abs(r[0]-n[0])<.01?Math.abs(r[0]-y[0])<.01&&(y[1]-r[1])*(n[1]-y[1])>=0&&(n=y,s=l):Math.abs(r[1]-n[1])<.01?Math.abs(r[1]-y[1])<.01&&(y[0]-r[0])*(n[0]-y[0])>=0&&(n=y,s=l):i.log("endpt to newendpt is not vert. or horz.",r,n,y)}if(r=n,s>=0)break;f+="L"+n}if(s===t.edgepaths.length){i.log("unclosed perimeter path");break}h=s,(d=-1===p.indexOf(h))&&(h=p[0],f+="Z")}for(h=0;hn.center?n.right-s:s-n.left)/(u+Math.abs(Math.sin(c)*o)),p=(l>n.middle?n.bottom-l:l-n.top)/(Math.abs(f)+Math.cos(c)*o);if(h<1||p<1)return 1/0;var d=v.EDGECOST*(1/(h-1)+1/(p-1));d+=v.ANGLECOST*c*c;for(var g=s-u,m=l-f,y=s+u,x=l+f,b=0;b2*v.MAXCOST)break;p&&(s/=2),l=(o=c-s/2)+1.5*s}if(h<=v.MAXCOST)return u},r.addLabelData=function(t,e,r,n){var i=e.fontSize,a=e.width+i/3,o=Math.max(0,e.height-i/3),s=t.x,l=t.y,c=t.theta,u=Math.sin(c),f=Math.cos(c),h=function(t,e){return[s+t*f-e*u,l+t*u+e*f]},p=[h(-a/2,-o/2),h(-a/2,o/2),h(a/2,o/2),h(a/2,-o/2)];r.push({text:e.text,x:s,y:l,dy:e.dy,theta:c,level:e.level,width:a,height:o}),n.push(p)},r.drawLabels=function(t,e,r,a,o){var l=t.selectAll("text").data(e,(function(t){return t.text+","+t.x+","+t.y+","+t.theta}));if(l.exit().remove(),l.enter().append("text").attr({"data-notex":1,"text-anchor":"middle"}).each((function(t){var e=t.x+Math.sin(t.theta)*t.dy,i=t.y-Math.cos(t.theta)*t.dy;n.select(this).text(t.text).attr({x:e,y:i,transform:"rotate("+180*t.theta/Math.PI+" "+e+" "+i+")"}).call(s.convertToTspans,r)})),o){for(var c="",u=0;ur.end&&(r.start=r.end=(r.start+r.end)/2),t._input.contours||(t._input.contours={}),i.extendFlat(t._input.contours,{start:r.start,end:r.end,size:r.size}),t._input.autocontour=!0}else if("constraint"!==r.type){var c,u=r.start,f=r.end,h=t._input.contours;if(u>f&&(r.start=h.start=f,f=r.end=h.end=u,u=r.start),!(r.size>0))c=u===f?1:a(u,f,t.ncontours).dtick,h.size=r.size=c}}},{"../../lib":778,"../../plots/cartesian/axes":828}],1028:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/drawing"),a=t("../heatmap/style"),o=t("./make_color_map");e.exports=function(t){var e=n.select(t).selectAll("g.contour");e.style("opacity",(function(t){return t[0].trace.opacity})),e.each((function(t){var e=n.select(this),r=t[0].trace,a=r.contours,s=r.line,l=a.size||1,c=a.start,u="constraint"===a.type,f=!u&&"lines"===a.coloring,h=!u&&"fill"===a.coloring,p=f||h?o(r):null;e.selectAll("g.contourlevel").each((function(t){n.select(this).selectAll("path").call(i.lineGroupStyle,s.width,f?p(t.level):s.color,s.dash)}));var d=a.labelfont;if(e.selectAll("g.contourlabels text").each((function(t){i.font(n.select(this),{family:d.family,size:d.size,color:d.color||(f?p(t.level):s.color)})})),u)e.selectAll("g.contourfill path").style("fill",r.fillcolor);else if(h){var g;e.selectAll("g.contourfill path").style("fill",(function(t){return void 0===g&&(g=t.level),p(t.level+.5*l)})),void 0===g&&(g=c),e.selectAll("g.contourbg path").style("fill",p(g-.5*l))}})),a(t)}},{"../../components/drawing":665,"../heatmap/style":1077,"./make_color_map":1024,d3:169}],1029:[function(t,e,r){"use strict";var n=t("../../components/colorscale/defaults"),i=t("./label_defaults");e.exports=function(t,e,r,a,o){var s,l=r("contours.coloring"),c="";"fill"===l&&(s=r("contours.showlines")),!1!==s&&("lines"!==l&&(c=r("line.color","#000")),r("line.width",.5),r("line.dash")),"none"!==l&&(!0!==t.showlegend&&(e.showlegend=!1),e._dfltShowLegend=!1,n(t,e,a,r,{prefix:"",cLetter:"z"})),r("line.smoothing"),i(r,a,c,o)}},{"../../components/colorscale/defaults":653,"./label_defaults":1023}],1030:[function(t,e,r){"use strict";var n=t("../heatmap/attributes"),i=t("../contour/attributes"),a=t("../../components/colorscale/attributes"),o=t("../../lib/extend").extendFlat,s=i.contours;e.exports=o({carpet:{valType:"string",editType:"calc"},z:n.z,a:n.x,a0:n.x0,da:n.dx,b:n.y,b0:n.y0,db:n.dy,text:n.text,hovertext:n.hovertext,transpose:n.transpose,atype:n.xtype,btype:n.ytype,fillcolor:i.fillcolor,autocontour:i.autocontour,ncontours:i.ncontours,contours:{type:s.type,start:s.start,end:s.end,size:s.size,coloring:{valType:"enumerated",values:["fill","lines","none"],dflt:"fill",editType:"calc"},showlines:s.showlines,showlabels:s.showlabels,labelfont:s.labelfont,labelformat:s.labelformat,operation:s.operation,value:s.value,editType:"calc",impliedEdits:{autocontour:!1}},line:{color:i.line.color,width:i.line.width,dash:i.line.dash,smoothing:i.line.smoothing,editType:"plot"},transforms:void 0},a("",{cLetter:"z",autoColorDflt:!1}))},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../contour/attributes":1008,"../heatmap/attributes":1065}],1031:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc"),i=t("../../lib"),a=t("../heatmap/convert_column_xyz"),o=t("../heatmap/clean_2d_array"),s=t("../heatmap/interp2d"),l=t("../heatmap/find_empties"),c=t("../heatmap/make_bound_array"),u=t("./defaults"),f=t("../carpet/lookup_carpetid"),h=t("../contour/set_contours");e.exports=function(t,e){var r=e._carpetTrace=f(t,e);if(r&&r.visible&&"legendonly"!==r.visible){if(!e.a||!e.b){var p=t.data[r.index],d=t.data[e.index];d.a||(d.a=p.a),d.b||(d.b=p.b),u(d,e,e._defaultColor,t._fullLayout)}var g=function(t,e){var r,u,f,h,p,d,g,m=e._carpetTrace,v=m.aaxis,y=m.baxis;v._minDtick=0,y._minDtick=0,i.isArray1D(e.z)&&a(e,v,y,"a","b",["z"]);r=e._a=e._a||e.a,h=e._b=e._b||e.b,r=r?v.makeCalcdata(e,"_a"):[],h=h?y.makeCalcdata(e,"_b"):[],u=e.a0||0,f=e.da||1,p=e.b0||0,d=e.db||1,g=e._z=o(e._z||e.z,e.transpose),e._emptypoints=l(g),s(g,e._emptypoints);var x=i.maxRowLength(g),b="scaled"===e.xtype?"":r,_=c(e,b,u,f,x,v),w="scaled"===e.ytype?"":h,T=c(e,w,p,d,g.length,y),k={a:_,b:T,z:g};"levels"===e.contours.type&&"none"!==e.contours.coloring&&n(t,e,{vals:g,containerStr:"",cLetter:"z"});return[k]}(t,e);return h(e,e._z),g}}},{"../../components/colorscale/calc":651,"../../lib":778,"../carpet/lookup_carpetid":981,"../contour/set_contours":1027,"../heatmap/clean_2d_array":1067,"../heatmap/convert_column_xyz":1069,"../heatmap/find_empties":1071,"../heatmap/interp2d":1074,"../heatmap/make_bound_array":1075,"./defaults":1032}],1032:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../heatmap/xyz_defaults"),a=t("./attributes"),o=t("../contour/constraint_defaults"),s=t("../contour/contours_defaults"),l=t("../contour/style_defaults");e.exports=function(t,e,r,c){function u(r,i){return n.coerce(t,e,a,r,i)}if(u("carpet"),t.a&&t.b){if(!i(t,e,u,c,"a","b"))return void(e.visible=!1);u("text"),"constraint"===u("contours.type")?o(t,e,u,c,r,{hasHover:!1}):(s(t,e,u,(function(r){return n.coerce2(t,e,a,r)})),l(t,e,u,c,{hasHover:!1}))}else e._defaultColor=r,e._length=null}},{"../../lib":778,"../contour/constraint_defaults":1013,"../contour/contours_defaults":1015,"../contour/style_defaults":1029,"../heatmap/xyz_defaults":1079,"./attributes":1030}],1033:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../contour/colorbar"),calc:t("./calc"),plot:t("./plot"),style:t("../contour/style"),moduleType:"trace",name:"contourcarpet",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","carpet","contour","symbols","showLegend","hasLines","carpetDependent","noHover","noSortingByValue"],meta:{}}},{"../../plots/cartesian":841,"../contour/colorbar":1011,"../contour/style":1028,"./attributes":1030,"./calc":1031,"./defaults":1032,"./plot":1034}],1034:[function(t,e,r){"use strict";var n=t("d3"),i=t("../carpet/map_1d_array"),a=t("../carpet/makepath"),o=t("../../components/drawing"),s=t("../../lib"),l=t("../contour/make_crossings"),c=t("../contour/find_all_paths"),u=t("../contour/plot"),f=t("../contour/constants"),h=t("../contour/convert_to_constraints"),p=t("../contour/empty_pathinfo"),d=t("../contour/close_boundaries"),g=t("../carpet/lookup_carpetid"),m=t("../carpet/axis_aligned_line");function v(t,e,r){var n=t.getPointAtLength(e),i=t.getPointAtLength(r),a=i.x-n.x,o=i.y-n.y,s=Math.sqrt(a*a+o*o);return[a/s,o/s]}function y(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]);return[t[0]/e,t[1]/e]}function x(t,e){var r=Math.abs(t[0]*e[0]+t[1]*e[1]);return Math.sqrt(1-r*r)/r}e.exports=function(t,e,r,b){var _=e.xaxis,w=e.yaxis;s.makeTraceGroups(b,r,"contour").each((function(r){var b=n.select(this),T=r[0],k=T.trace,M=k._carpetTrace=g(t,k),A=t.calcdata[M.index][0];if(M.visible&&"legendonly"!==M.visible){var S=T.a,E=T.b,C=k.contours,L=p(C,e,T),I="constraint"===C.type,P=C._operation,z=I?"="===P?"lines":"fill":C.coloring,O=[[S[0],E[E.length-1]],[S[S.length-1],E[E.length-1]],[S[S.length-1],E[0]],[S[0],E[0]]];l(L);var D=1e-8*(S[S.length-1]-S[0]),R=1e-8*(E[E.length-1]-E[0]);c(L,D,R);var F,B,N,j,U=L;"constraint"===C.type&&(U=h(L,P)),function(t,e){var r,n,i,a,o,s,l,c,u;for(r=0;r=0;j--)F=A.clipsegments[j],B=i([],F.x,_.c2p),N=i([],F.y,w.c2p),B.reverse(),N.reverse(),V.push(a(B,N,F.bicubic));var q="M"+V.join("L")+"Z";!function(t,e,r,n,o,l){var c,u,f,h,p=s.ensureSingle(t,"g","contourbg").selectAll("path").data("fill"!==l||o?[]:[0]);p.enter().append("path"),p.exit().remove();var d=[];for(h=0;h<e.length;h++)c=e[h],u=i([],c.x,r.c2p),f=i([],c.y,n.c2p),d.push(a(u,f,c.bicubic));p.attr("d","M"+d.join("L")+"Z").style("stroke","none")}(b,A.clipsegments,_,w,I,z),function(t,e,r,i,a,l,c,u,f,h,p){var g="fill"===h;g&&d(a,t.contours);var v=s.ensureSingle(e,"g","contourfill").selectAll("path").data(g?a:[]);v.enter().append("path"),v.exit().remove(),v.each((function(t){var e=(t.prefixBoundary?p:"")+function(t,e,r,n,i,a,l,c){var u,f,h,p,d,g,v,y="",x=e.edgepaths.map((function(t,e){return e})),b=!0,_=1e-4*Math.abs(r[0][0]-r[2][0]),w=1e-4*Math.abs(r[0][1]-r[2][1]);function T(t){return Math.abs(t[1]-r[0][1])<w}function k(t){return Math.abs(t[1]-r[2][1])<w}function M(t){return Math.abs(t[0]-r[0][0])<_}function A(t){return Math.abs(t[0]-r[2][0])<_}function S(t,e){var r,n,o,s,u="";for(T(t)&&!A(t)||k(t)&&!M(t)?(s=i.aaxis,o=m(i,a,[t[0],e[0]],.5*(t[1]+e[1]))):(s=i.baxis,o=m(i,a,.5*(t[0]+e[0]),[t[1],e[1]])),r=1;r<o.length;r++)for(u+=s.smoothing?"C":"L",n=0;n<o[r].length;n++){var f=o[r][n];u+=[l.c2p(f[0]),c.c2p(f[1])]+" "}return u}u=0,f=null;for(;x.length;){var E=e.edgepaths[u][0];for(f&&(y+=S(f,E)),v=o.smoothopen(e.edgepaths[u].map(n),e.smoothing),y+=b?v:v.replace(/^M/,"L"),x.splice(x.indexOf(u),1),f=e.edgepaths[u][e.edgepaths[u].length-1],d=-1,p=0;p<4;p++){if(!f){s.log("Missing end?",u,e);break}for(T(f)&&!A(f)?h=r[1]:M(f)?h=r[0]:k(f)?h=r[3]:A(f)&&(h=r[2]),g=0;g<e.edgepaths.length;g++){var C=e.edgepaths[g][0];Math.abs(f[0]-h[0])<_?Math.abs(f[0]-C[0])<_&&(C[1]-f[1])*(h[1]-C[1])>=0&&(h=C,d=g):Math.abs(f[1]-h[1])=0&&(h=C,d=g):s.log("endpt to newendpt is not vert. or horz.",f,h,C)}if(d>=0)break;y+=S(f,h),f=h}if(d===e.edgepaths.length){s.log("unclosed perimeter path");break}u=d,(b=-1===x.indexOf(u))&&(u=x[0],y+=S(f,h)+"Z",f=null)}for(u=0;um&&(n.max=m);n.len=n.max-n.min}(this,r,t,n,c,e.height),!(n.len<(e.width+e.height)*f.LABELMIN)))for(var i=Math.min(Math.ceil(n.len/P),f.LABELMAX),a=0;a0?+p[u]:0),f.push({type:"Feature",geometry:{type:"Point",coordinates:v},properties:y})}}var b=o.extractOpts(e),_=b.reversescale?o.flipScale(b.colorscale):b.colorscale,w=_[0][1],T=["interpolate",["linear"],["heatmap-density"],0,a.opacity(w)<1?w:a.addOpacity(w,0)];for(u=1;u<_.length;u++)T.push(_[u][0],_[u][1]);var k=["interpolate",["linear"],["get","z"],b.min,0,b.max,1];return i.extendFlat(c.heatmap.paint,{"heatmap-weight":d?k:1/(b.max-b.min),"heatmap-color":T,"heatmap-radius":g?{type:"identity",property:"r"}:e.radius,"heatmap-opacity":e.opacity}),c.geojson={type:"FeatureCollection",features:f},c.heatmap.layout.visibility="visible",c}},{"../../components/color":643,"../../components/colorscale":655,"../../constants/numerical":753,"../../lib":778,"../../lib/geojson_utils":772,"fast-isnumeric":241}],1038:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/colorscale/defaults"),a=t("./attributes");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s("lon")||[],c=s("lat")||[],u=Math.min(l.length,c.length);u?(e._length=u,s("z"),s("radius"),s("below"),s("text"),s("hovertext"),s("hovertemplate"),i(t,e,o,s,{prefix:"",cLetter:"z"})):e.visible=!1}},{"../../components/colorscale/defaults":653,"../../lib":778,"./attributes":1035}],1039:[function(t,e,r){"use strict";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t.z=e.z,t}},{}],1040:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../plots/cartesian/axes"),a=t("../scattermapbox/hover");e.exports=function(t,e,r){var o=a(t,e,r);if(o){var s=o[0],l=s.cd,c=l[0].trace,u=l[s.index];if(delete s.color,"z"in u){var f=s.subplot.mockAxis;s.z=u.z,s.zLabel=i.tickText(f,f.c2l(u.z),"hover").text}return s.extraText=function(t,e,r){if(t.hovertemplate)return;var i=(e.hi||t.hoverinfo).split("+"),a=-1!==i.indexOf("all"),o=-1!==i.indexOf("lon"),s=-1!==i.indexOf("lat"),l=e.lonlat,c=[];function u(t){return t+"\xb0"}a||o&&s?c.push("("+u(l[0])+", "+u(l[1])+")"):o?c.push(r.lon+u(l[0])):s&&c.push(r.lat+u(l[1]));(a||-1!==i.indexOf("text"))&&n.fillText(e,t,c);return c.join("
")}(c,u,l[0].t.labels),[s]}}},{"../../lib":778,"../../plots/cartesian/axes":828,"../scattermapbox/hover":1257}],1041:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../heatmap/colorbar"),formatLabels:t("../scattermapbox/format_labels"),calc:t("./calc"),plot:t("./plot"),hoverPoints:t("./hover"),eventData:t("./event_data"),getBelow:function(t,e){for(var r=e.getMapLayers(),n=0;n<r.length;n++){var i=r[n],a=i.id;if("symbol"===i.type&&"string"==typeof a&&-1===a.indexOf("plotly-"))return a}},moduleType:"trace",name:"densitymapbox",basePlotModule:t("../../plots/mapbox"),categories:["mapbox","gl","showLegend"],meta:{hr_name:"density_mapbox"}}},{"../../plots/mapbox":885,"../heatmap/colorbar":1068,"../scattermapbox/format_labels":1256,"./attributes":1035,"./calc":1036,"./defaults":1038,"./event_data":1039,"./hover":1040,"./plot":1042}],1042:[function(t,e,r){"use strict";var n=t("./convert"),i=t("../../plots/mapbox/constants").traceLayerPrefix;function a(t,e){this.type="densitymapbox",this.subplot=t,this.uid=e,this.sourceId="source-"+e,this.layerList=[["heatmap",i+e+"-heatmap"]],this.below=null}var o=a.prototype;o.update=function(t){var e=this.subplot,r=this.layerList,i=n(t),a=e.belowLookup["trace-"+this.uid];e.map.getSource(this.sourceId).setData(i.geojson),a!==this.below&&(this._removeLayers(),this._addLayers(i,a),this.below=a);for(var o=0;o<r.length;o++){var s=r[o],l=s[0],c=s[1],u=i[l];e.setOptions(c,"setLayoutProperty",u.layout),"visible"===u.layout.visibility&&e.setOptions(c,"setPaintProperty",u.paint)}},o._addLayers=function(t,e){for(var r=this.subplot,n=this.layerList,i=this.sourceId,a=0;a<n.length;a++){var o=n[a],s=o[0],l=t[s];r.addLayer({type:s,id:o[1],source:i,layout:l.layout,paint:l.paint},e)}},o._removeLayers=function(){for(var t=this.subplot.map,e=this.layerList,r=e.length-1;r>=0;r--)t.removeLayer(e[r][1])},o.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,i=new a(t,r.uid),o=i.sourceId,s=n(e),l=i.below=t.belowLookup["trace-"+r.uid];return t.map.addSource(o,{type:"geojson",data:s.geojson}),i._addLayers(s,l),i}},{"../../plots/mapbox/constants":883,"./convert":1037}],1043:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){for(var r=0;r"),s.color=function(t,e){var r=t.marker,i=e.mc||r.color,a=e.mlc||r.line.color,o=e.mlw||r.line.width;if(n(i))return i;if(n(a)&&o)return a}(c,f),[s]}}},{"../../components/color":643,"../../lib":778,"../bar/hover":928}],1051:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults").supplyDefaults,crossTraceDefaults:t("./defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc"),plot:t("./plot"),style:t("./style").style,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("../bar/select"),moduleType:"trace",name:"funnel",basePlotModule:t("../../plots/cartesian"),categories:["bar-like","cartesian","svg","oriented","showLegend","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../bar/select":933,"./attributes":1044,"./calc":1045,"./cross_trace_calc":1047,"./defaults":1048,"./event_data":1049,"./hover":1050,"./layout_attributes":1052,"./layout_defaults":1053,"./plot":1054,"./style":1055}],1052:[function(t,e,r){"use strict";e.exports={funnelmode:{valType:"enumerated",values:["stack","group","overlay"],dflt:"stack",editType:"calc"},funnelgap:{valType:"number",min:0,max:1,editType:"calc"},funnelgroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},{}],1053:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e,r){var a=!1;function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=0;s path").each((function(t){if(!t.isBlank){var e=s.marker;n.select(this).call(a.fill,t.mc||e.color).call(a.stroke,t.mlc||e.line.color).call(i.dashLine,e.line.dash,t.mlw||e.line.width).style("opacity",s.selectedpoints&&!t.selected?o:1)}})),c(r,s,t),r.selectAll(".regions").each((function(){n.select(this).selectAll("path").style("stroke-width",0).call(a.fill,s.connector.fillcolor)})),r.selectAll(".lines").each((function(){var t=s.connector.line;i.lineGroupStyle(n.select(this).selectAll("path"),t.width,t.color,t.dash)}))}))}}},{"../../components/color":643,"../../components/drawing":665,"../../constants/interactions":752,"../bar/style":935,"../bar/uniform_text":937,d3:169}],1056:[function(t,e,r){"use strict";var n=t("../pie/attributes"),i=t("../../plots/attributes"),a=t("../../plots/domain").attributes,o=t("../../plots/template_attributes").hovertemplateAttrs,s=t("../../plots/template_attributes").texttemplateAttrs,l=t("../../lib/extend").extendFlat;e.exports={labels:n.labels,label0:n.label0,dlabel:n.dlabel,values:n.values,marker:{colors:n.marker.colors,line:{color:l({},n.marker.line.color,{dflt:null}),width:l({},n.marker.line.width,{dflt:1}),editType:"calc"},editType:"calc"},text:n.text,hovertext:n.hovertext,scalegroup:l({},n.scalegroup,{}),textinfo:l({},n.textinfo,{flags:["label","text","value","percent"]}),texttemplate:s({editType:"plot"},{keys:["label","color","value","text","percent"]}),hoverinfo:l({},i.hoverinfo,{flags:["label","text","value","percent","name"]}),hovertemplate:o({},{keys:["label","color","value","text","percent"]}),textposition:l({},n.textposition,{values:["inside","none"],dflt:"inside"}),textfont:n.textfont,insidetextfont:n.insidetextfont,title:{text:n.title.text,font:n.title.font,position:l({},n.title.position,{values:["top left","top center","top right"],dflt:"top center"}),editType:"plot"},domain:a({name:"funnelarea",trace:!0,editType:"calc"}),aspectratio:{valType:"number",min:0,dflt:1,editType:"plot"},baseratio:{valType:"number",min:0,max:1,dflt:.333,editType:"plot"}}},{"../../lib/extend":768,"../../plots/attributes":824,"../../plots/domain":855,"../../plots/template_attributes":906,"../pie/attributes":1161}],1057:[function(t,e,r){"use strict";var n=t("../../plots/plots");r.name="funnelarea",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{"../../plots/plots":891}],1058:[function(t,e,r){"use strict";var n=t("../pie/calc");e.exports={calc:function(t,e){return n.calc(t,e)},crossTraceCalc:function(t){n.crossTraceCalc(t,{type:"funnelarea"})}}},{"../pie/calc":1163}],1059:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../plots/domain").defaults,o=t("../bar/defaults").handleText,s=t("../pie/defaults").handleLabelsAndValues;e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,i,r,a)}var u=c("labels"),f=c("values"),h=s(u,f),p=h.len;if(e._hasLabels=h.hasLabels,e._hasValues=h.hasValues,!e._hasLabels&&e._hasValues&&(c("label0"),c("dlabel")),p){e._length=p,c("marker.line.width")&&c("marker.line.color",l.paper_bgcolor),c("marker.colors"),c("scalegroup");var d,g=c("text"),m=c("texttemplate");if(m||(d=c("textinfo",Array.isArray(g)?"text+percent":"percent")),c("hovertext"),c("hovertemplate"),m||d&&"none"!==d){var v=c("textposition");o(t,e,l,c,v,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1})}a(e,l,c),c("title.text")&&(c("title.position"),n.coerceFont(c,"title.font",l.font)),c("aspectratio"),c("baseratio")}else e.visible=!1}},{"../../lib":778,"../../plots/domain":855,"../bar/defaults":925,"../pie/defaults":1164,"./attributes":1056}],1060:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"funnelarea",basePlotModule:t("./base_plot"),categories:["pie-like","funnelarea","showLegend"],attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot"),style:t("./style"),styleOne:t("../pie/style_one"),meta:{}}},{"../pie/style_one":1172,"./attributes":1056,"./base_plot":1057,"./calc":1058,"./defaults":1059,"./layout_attributes":1061,"./layout_defaults":1062,"./plot":1063,"./style":1064}],1061:[function(t,e,r){"use strict";var n=t("../pie/layout_attributes").hiddenlabels;e.exports={hiddenlabels:n,funnelareacolorway:{valType:"colorlist",editType:"calc"},extendfunnelareacolors:{valType:"boolean",dflt:!0,editType:"calc"}}},{"../pie/layout_attributes":1168}],1062:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r("hiddenlabels"),r("funnelareacolorway",e.colorway),r("extendfunnelareacolors")}},{"../../lib":778,"./layout_attributes":1061}],1063:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/drawing"),a=t("../../lib"),o=a.strScale,s=a.strTranslate,l=t("../../lib/svg_text_utils"),c=t("../bar/plot").toMoveInsideBar,u=t("../bar/uniform_text"),f=u.recordMinTextSize,h=u.clearMinTextSize,p=t("../pie/helpers"),d=t("../pie/plot"),g=d.attachFxHandlers,m=d.determineInsideTextFont,v=d.layoutAreas,y=d.prerenderTitles,x=d.positionTitleOutside,b=d.formatSliceLabel;function _(t,e){return"l"+(e[0]-t[0])+","+(e[1]-t[1])}e.exports=function(t,e){var r=t._fullLayout;h("funnelarea",r),y(e,t),v(e,r._size),a.makeTraceGroups(r._funnelarealayer,e,"trace").each((function(e){var u=n.select(this),h=e[0],d=h.trace;!function(t){if(!t.length)return;var e=t[0],r=e.trace,n=r.aspectratio,i=r.baseratio;i>.999&&(i=.999);var a,o=Math.pow(i,2),s=e.vTotal,l=s,c=s*o/(1-o)/s;function u(){var t,e={x:t=Math.sqrt(c),y:-t};return[e.x,e.y]}var f,h,p=[];for(p.push(u()),f=t.length-1;f>-1;f--)if(!(h=t[f]).hidden){var d=h.v/l;c+=d,p.push(u())}var g=1/0,m=-1/0;for(f=0;f-1;f--)if(!(h=t[f]).hidden){var M=p[k+=1][0],A=p[k][1];h.TL=[-M,A],h.TR=[M,A],h.BL=w,h.BR=T,h.pxmid=(S=h.TR,E=h.BR,[.5*(S[0]+E[0]),.5*(S[1]+E[1])]),w=h.TL,T=h.TR}var S,E}(e),u.each((function(){var u=n.select(this).selectAll("g.slice").data(e);u.enter().append("g").classed("slice",!0),u.exit().remove(),u.each((function(o,s){if(o.hidden)n.select(this).selectAll("path,g").remove();else{o.pointNumber=o.i,o.curveNumber=d.index;var u=h.cx,v=h.cy,y=n.select(this),x=y.selectAll("path.surface").data([o]);x.enter().append("path").classed("surface",!0).style({"pointer-events":"all"}),y.call(g,t,e);var w="M"+(u+o.TR[0])+","+(v+o.TR[1])+_(o.TR,o.BR)+_(o.BR,o.BL)+_(o.BL,o.TL)+"Z";x.attr("d",w),b(t,o,h);var T=p.castOption(d.textposition,o.pts),k=y.selectAll("g.slicetext").data(o.text&&"none"!==T?[0]:[]);k.enter().append("g").classed("slicetext",!0),k.exit().remove(),k.each((function(){var h=a.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),p=a.ensureUniformFontSize(t,m(d,o,r.font));h.text(o.text).attr({class:"slicetext",transform:"","text-anchor":"middle"}).call(i.font,p).call(l.convertToTspans,t);var g,y,x,b=i.bBox(h.node()),_=Math.min(o.BL[1],o.BR[1])+v,w=Math.max(o.TL[1],o.TR[1])+v;y=Math.max(o.TL[0],o.BL[0])+u,x=Math.min(o.TR[0],o.BR[0])+u,(g=c(y,x,_,w,b,{isHorizontal:!0,constrained:!0,angle:0,anchor:"middle"})).fontSize=p.size,f(d.type,g,r),e[s].transform=g,h.attr("transform",a.getTextTransform(g))}))}}));var v=n.select(this).selectAll("g.titletext").data(d.title.text?[0]:[]);v.enter().append("g").classed("titletext",!0),v.exit().remove(),v.each((function(){var e=a.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),c=d.title.text;d._meta&&(c=a.templateString(c,d._meta)),e.text(c).attr({class:"titletext",transform:"","text-anchor":"middle"}).call(i.font,d.title.font).call(l.convertToTspans,t);var u=x(h,r._size);e.attr("transform",s(u.x,u.y)+o(Math.min(1,u.scale))+s(u.tx,u.ty))}))}))}))}},{"../../components/drawing":665,"../../lib":778,"../../lib/svg_text_utils":803,"../bar/plot":932,"../bar/uniform_text":937,"../pie/helpers":1166,"../pie/plot":1170,d3:169}],1064:[function(t,e,r){"use strict";var n=t("d3"),i=t("../pie/style_one"),a=t("../bar/uniform_text").resizeText;e.exports=function(t){var e=t._fullLayout._funnelarealayer.selectAll(".trace");a(t,e,"funnelarea"),e.each((function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll("path.surface").each((function(t){n.select(this).call(i,t,e)}))}))}},{"../bar/uniform_text":937,"../pie/style_one":1172,d3:169}],1065:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../../plots/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../../components/colorscale/attributes"),s=(t("../../constants/docs").FORMAT_LINK,t("../../lib/extend").extendFlat);e.exports=s({z:{valType:"data_array",editType:"calc"},x:s({},n.x,{impliedEdits:{xtype:"array"}}),x0:s({},n.x0,{impliedEdits:{xtype:"scaled"}}),dx:s({},n.dx,{impliedEdits:{xtype:"scaled"}}),y:s({},n.y,{impliedEdits:{ytype:"array"}}),y0:s({},n.y0,{impliedEdits:{ytype:"scaled"}}),dy:s({},n.dy,{impliedEdits:{ytype:"scaled"}}),xperiod:s({},n.xperiod,{impliedEdits:{xtype:"scaled"}}),yperiod:s({},n.yperiod,{impliedEdits:{ytype:"scaled"}}),xperiod0:s({},n.xperiod0,{impliedEdits:{xtype:"scaled"}}),yperiod0:s({},n.yperiod0,{impliedEdits:{ytype:"scaled"}}),xperiodalignment:s({},n.xperiodalignment,{impliedEdits:{xtype:"scaled"}}),yperiodalignment:s({},n.yperiodalignment,{impliedEdits:{ytype:"scaled"}}),text:{valType:"data_array",editType:"calc"},hovertext:{valType:"data_array",editType:"calc"},transpose:{valType:"boolean",dflt:!1,editType:"calc"},xtype:{valType:"enumerated",values:["array","scaled"],editType:"calc+clearAxisTypes"},ytype:{valType:"enumerated",values:["array","scaled"],editType:"calc+clearAxisTypes"},zsmooth:{valType:"enumerated",values:["fast","best",!1],dflt:!1,editType:"calc"},hoverongaps:{valType:"boolean",dflt:!0,editType:"none"},connectgaps:{valType:"boolean",editType:"calc"},xgap:{valType:"number",dflt:0,min:0,editType:"plot"},ygap:{valType:"number",dflt:0,min:0,editType:"plot"},zhoverformat:{valType:"string",dflt:"",editType:"none"},hovertemplate:a(),showlegend:s({},i.showlegend,{dflt:!1})},{transforms:void 0},o("",{cLetter:"z",autoColorDflt:!1}))},{"../../components/colorscale/attributes":650,"../../constants/docs":748,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../scatter/attributes":1187}],1066:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib"),a=t("../../plots/cartesian/axes"),o=t("../../plots/cartesian/align_period"),s=t("../histogram2d/calc"),l=t("../../components/colorscale/calc"),c=t("./convert_column_xyz"),u=t("./clean_2d_array"),f=t("./interp2d"),h=t("./find_empties"),p=t("./make_bound_array"),d=t("../../constants/numerical").BADNUM;function g(t){for(var e=[],r=t.length,n=0;nD){z("x scale is not linear");break}}if(x.length&&"fast"===I){var R=(x[x.length-1]-x[0])/(x.length-1),F=Math.abs(R/100);for(k=0;kF){z("y scale is not linear");break}}}var B=i.maxRowLength(T),N="scaled"===e.xtype?"":r,j=p(e,N,m,v,B,A),U="scaled"===e.ytype?"":x,V=p(e,U,b,_,T.length,S);L||(e._extremes[A._id]=a.findExtremes(A,j),e._extremes[S._id]=a.findExtremes(S,V));var q={x:j,y:V,z:T,text:e._text||e.text,hovertext:e._hovertext||e.hovertext};if(e.xperiodalignment&&y&&(q.orig_x=y),e.yperiodalignment&&w&&(q.orig_y=w),N&&N.length===j.length-1&&(q.xCenter=N),U&&U.length===V.length-1&&(q.yCenter=U),C&&(q.xRanges=M.xRanges,q.yRanges=M.yRanges,q.pts=M.pts),E||l(t,e,{vals:T,cLetter:"z"}),E&&e.contours&&"heatmap"===e.contours.coloring){var H={type:"contour"===e.type?"heatmap":"histogram2d",xcalendar:e.xcalendar,ycalendar:e.ycalendar};q.xfill=p(H,N,m,v,B,A),q.yfill=p(H,U,b,_,T.length,S)}return[q]}},{"../../components/colorscale/calc":651,"../../constants/numerical":753,"../../lib":778,"../../plots/cartesian/align_period":825,"../../plots/cartesian/axes":828,"../../registry":911,"../histogram2d/calc":1098,"./clean_2d_array":1067,"./convert_column_xyz":1069,"./find_empties":1071,"./interp2d":1074,"./make_bound_array":1075}],1067:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib"),a=t("../../constants/numerical").BADNUM;e.exports=function(t,e,r,o){var s,l,c,u,f,h;function p(t){if(n(t))return+t}if(e&&e.transpose){for(s=0,f=0;f=0;o--)(s=((f[[(r=(a=h[o])[0])-1,i=a[1]]]||g)[2]+(f[[r+1,i]]||g)[2]+(f[[r,i-1]]||g)[2]+(f[[r,i+1]]||g)[2])/20)&&(l[a]=[r,i,s],h.splice(o,1),c=!0);if(!c)throw"findEmpties iterated with no new neighbors";for(a in l)f[a]=l[a],u.push(l[a])}return u.sort((function(t,e){return e[2]-t[2]}))}},{"../../lib":778}],1072:[function(t,e,r){"use strict";var n=t("../../components/fx"),i=t("../../lib"),a=t("../../plots/cartesian/axes"),o=t("../../components/colorscale").extractOpts;e.exports=function(t,e,r,s,l,c){var u,f,h,p,d=t.cd[0],g=d.trace,m=t.xa,v=t.ya,y=d.x,x=d.y,b=d.z,_=d.xCenter,w=d.yCenter,T=d.zmask,k=g.zhoverformat,M=y,A=x;if(!1!==t.index){try{h=Math.round(t.index[1]),p=Math.round(t.index[0])}catch(e){return void i.error("Error hovering on heatmap, pointNumber must be [row,col], found:",t.index)}if(h<0||h>=b[0].length||p<0||p>b.length)return}else{if(n.inbox(e-y[0],e-y[y.length-1],0)>0||n.inbox(r-x[0],r-x[x.length-1],0)>0)return;if(c){var S;for(M=[2*y[0]-y[1]],S=1;Sg&&(v=Math.max(v,Math.abs(t[a][o]-d)/(m-g))))}return v}e.exports=function(t,e){var r,i=1;for(o(t,e),r=0;r.01;r++)i=o(t,e,a(i));return i>.01&&n.log("interp2d didn't converge quickly",i),t}},{"../../lib":778}],1075:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib").isArrayOrTypedArray;e.exports=function(t,e,r,a,o,s){var l,c,u,f=[],h=n.traceIs(t,"contour"),p=n.traceIs(t,"histogram"),d=n.traceIs(t,"gl2d");if(i(e)&&e.length>1&&!p&&"category"!==s.type){var g=e.length;if(!(g<=o))return h?e.slice(0,o):e.slice(0,o+1);if(h||d)f=e.slice(0,o);else if(1===o)f=[e[0]-.5,e[0]+.5];else{for(f=[1.5*e[0]-.5*e[1]],u=1;u0;)h=p.c2p(T[y]),y--;for(h0;)v=d.c2p(k[y]),y--;if(v0&&(a=!0);for(var l=0;la){var o=a-r[t];return r[t]=a,o}}return 0},max:function(t,e,r,i){var a=i[e];if(n(a)){if(a=Number(a),!n(r[t]))return r[t]=a,a;if(r[t]c?t>o?t>1.1*i?i:t>1.1*a?a:o:t>s?s:t>l?l:c:Math.pow(10,Math.floor(Math.log(t)/Math.LN10))}function p(t,e,r,n,a,s){if(n&&t>o){var l=d(e,a,s),c=d(r,a,s),u=t===i?0:1;return l[u]!==c[u]}return Math.floor(r/t)-Math.floor(e/t)>.1}function d(t,e,r){var n=e.c2d(t,i,r).split("-");return""===n[0]&&(n.unshift(),n[0]="-"+n[0]),n}e.exports=function(t,e,r,n,a){var s,l,c=-1.1*e,h=-.1*e,p=t-h,d=r[0],g=r[1],m=Math.min(f(d+h,d+p,n,a),f(g+h,g+p,n,a)),v=Math.min(f(d+c,d+h,n,a),f(g+c,g+h,n,a));if(m>v&&vo){var y=s===i?1:6,x=s===i?"M12":"M1";return function(e,r){var o=n.c2d(e,i,a),s=o.indexOf("-",y);s>0&&(o=o.substr(0,s));var c=n.d2c(o,0,a);if(cr.r2l(B)&&(j=o.tickIncrement(j,b.size,!0,p)),O.start=r.l2r(j),F||i.nestedProperty(e,v+".start").set(O.start)}var U=b.end,V=r.r2l(z.end),q=void 0!==V;if((b.endFound||q)&&V!==r.r2l(U)){var H=q?V:i.aggNums(Math.max,null,d);O.end=r.l2r(H),q||i.nestedProperty(e,v+".start").set(O.end)}var G="autobin"+s;return!1===e._input[G]&&(e._input[v]=i.extendFlat({},e[v]||{}),delete e._input[G],delete e[G]),[O,d]}e.exports={calc:function(t,e){var r,a,p,d,g=[],m=[],v=o.getFromId(t,"h"===e.orientation?e.yaxis:e.xaxis),y="h"===e.orientation?"y":"x",x={x:"y",y:"x"}[y],b=e[y+"calendar"],_=e.cumulative,w=h(t,e,v,y),T=w[0],k=w[1],M="string"==typeof T.size,A=[],S=M?A:T,E=[],C=[],L=[],I=0,P=e.histnorm,z=e.histfunc,O=-1!==P.indexOf("density");_.enabled&&O&&(P=P.replace(/ ?density$/,""),O=!1);var D,R="max"===z||"min"===z?null:0,F=l.count,B=c[P],N=!1,j=function(t){return v.r2c(t,0,b)};for(i.isArrayOrTypedArray(e[x])&&"count"!==z&&(D=e[x],N="avg"===z,F=l[z]),r=j(T.start),p=j(T.end)+(r-o.tickIncrement(r,T.size,!1,b))/1e6;r=0&&d=0;n--)s(n);else if("increasing"===e){for(n=1;n=0;n--)t[n]+=t[n+1];"exclude"===r&&(t.push(0),t.shift())}}(m,_.direction,_.currentbin);var J=Math.min(g.length,m.length),K=[],Q=0,$=J-1;for(r=0;r=Q;r--)if(m[r]){$=r;break}for(r=Q;r<=$;r++)if(n(g[r])&&n(m[r])){var tt={p:g[r],s:m[r],b:0};_.enabled||(tt.pts=L[r],G?tt.ph0=tt.ph1=L[r].length?k[L[r][0]]:g[r]:(e._computePh=!0,tt.ph0=q(A[r]),tt.ph1=q(A[r+1],!0))),K.push(tt)}return 1===K.length&&(K[0].width1=o.tickIncrement(K[0].p,T.size,!1,b)-K[0].p),s(K,e),i.isArrayOrTypedArray(e.selectedpoints)&&i.tagSelected(K,e,X),K},calcAllAutoBins:h}},{"../../lib":778,"../../plots/cartesian/axes":828,"../../registry":911,"../bar/arrays_to_calcdata":920,"./average":1085,"./bin_functions":1087,"./bin_label_vals":1088,"./norm_functions":1096,"fast-isnumeric":241}],1090:[function(t,e,r){"use strict";e.exports={eventDataKeys:["binNumber"]}},{}],1091:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../plots/cartesian/axis_ids"),a=t("../../registry").traceIs,o=t("../bar/defaults").handleGroupingDefaults,s=n.nestedProperty,l=t("../../plots/cartesian/constraints").getAxisGroup,c=[{aStr:{x:"xbins.start",y:"ybins.start"},name:"start"},{aStr:{x:"xbins.end",y:"ybins.end"},name:"end"},{aStr:{x:"xbins.size",y:"ybins.size"},name:"size"},{aStr:{x:"nbinsx",y:"nbinsy"},name:"nbins"}],u=["x","y"];e.exports=function(t,e){var r,f,h,p,d,g,m,v=e._histogramBinOpts={},y=[],x={},b=[];function _(t,e){return n.coerce(r._input,r,r._module.attributes,t,e)}function w(t){return"v"===t.orientation?"x":"y"}function T(t,r,a){var o=t.uid+"__"+a;r||(r=o);var s=function(t,r){return i.getFromTrace({_fullLayout:e},t,r).type}(t,a),l=t[a+"calendar"]||"",c=v[r],u=!0;c&&(s===c.axType&&l===c.calendar?(u=!1,c.traces.push(t),c.dirs.push(a)):(r=o,s!==c.axType&&n.warn(["Attempted to group the bins of trace",t.index,"set on a","type:"+s,"axis","with bins on","type:"+c.axType,"axis."].join(" ")),l!==c.calendar&&n.warn(["Attempted to group the bins of trace",t.index,"set with a",l,"calendar","with bins",c.calendar?"on a "+c.calendar+" calendar":"w/o a set calendar"].join(" ")))),u&&(v[r]={traces:[t],dirs:[a],axType:s,calendar:t[a+"calendar"]||""}),t["_"+a+"bingroup"]=r}for(d=0;dS&&T.splice(S,T.length-S),A.length>S&&A.splice(S,A.length-S);var E=[],C=[],L=[],I="string"==typeof w.size,P="string"==typeof M.size,z=[],O=[],D=I?z:w,R=P?O:M,F=0,B=[],N=[],j=e.histnorm,U=e.histfunc,V=-1!==j.indexOf("density"),q="max"===U||"min"===U?null:0,H=a.count,G=o[j],Y=!1,W=[],X=[],Z="z"in e?e.z:"marker"in e&&Array.isArray(e.marker.color)?e.marker.color:"";Z&&"count"!==U&&(Y="avg"===U,H=a[U]);var J=w.size,K=x(w.start),Q=x(w.end)+(K-i.tickIncrement(K,J,!1,v))/1e6;for(r=K;r=0&&p=0&&d<st&&(F+=H(p,r,E[d],Z,B[d]),N[d][p].push(r),ut&&(void 0===ht[p]?ht[p]=yt:ht[p]!==yt&&(ut=!1)),ft&&(void 0===pt[d]?pt[d]=xt:pt[d]!==xt&&(ft=!1)),dt=Math.min(dt,yt-z[p]),gt=Math.min(gt,z[p+1]-yt),mt=Math.min(mt,xt-O[d]),vt=Math.min(vt,O[d+1]-xt))}if(Y)for(d=0;d<st;d++)F+=s(E[d],B[d]);if(G)for(d=0;d<st;d++)G(E[d],F,W,X[d]);return{x:T,xRanges:h(z,ut&&ht,dt,gt,g,v),x0:rt,dx:et,y:A,yRanges:h(O,ft&&pt,mt,vt,m,y),y0:ct,dy:lt,z:E,pts:N}}},{"../../lib":778,"../../plots/cartesian/axes":828,"../histogram/average":1085,"../histogram/bin_functions":1087,"../histogram/bin_label_vals":1088,"../histogram/calc":1089,"../histogram/norm_functions":1096}],1099:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./sample_defaults"),a=t("../heatmap/style_defaults"),o=t("../../components/colorscale/defaults"),s=t("./attributes");e.exports=function(t,e,r,l){function c(r,i){return n.coerce(t,e,s,r,i)}i(t,e,c,l),!1!==e.visible&&(a(t,e,c,l),o(t,e,l,c,{prefix:"",cLetter:"z"}),c("hovertemplate"))}},{"../../components/colorscale/defaults":653,"../../lib":778,"../heatmap/style_defaults":1078,"./attributes":1097,"./sample_defaults":1102}],1100:[function(t,e,r){"use strict";var n=t("../heatmap/hover"),i=t("../../plots/cartesian/axes").hoverLabelText;e.exports=function(t,e,r,a,o,s){var l=n(t,e,r,a,o,s);if(l){var c=(t=l[0]).index,u=c[0],f=c[1],h=t.cd[0],p=h.xRanges[f],d=h.yRanges[u];return t.xLabel=i(t.xa,p[0],p[1]),t.yLabel=i(t.ya,d[0],d[1]),l}}},{"../../plots/cartesian/axes":828,"../heatmap/hover":1072}],1101:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),crossTraceDefaults:t("../histogram/cross_trace_defaults"),calc:t("../heatmap/calc"),plot:t("../heatmap/plot"),layerName:"heatmaplayer",colorbar:t("../heatmap/colorbar"),style:t("../heatmap/style"),hoverPoints:t("./hover"),eventData:t("../histogram/event_data"),moduleType:"trace",name:"histogram2d",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","2dMap","histogram","showLegend"],meta:{}}},{"../../plots/cartesian":841,"../heatmap/calc":1066,"../heatmap/colorbar":1068,"../heatmap/plot":1076,"../heatmap/style":1077,"../histogram/cross_trace_defaults":1091,"../histogram/event_data":1093,"./attributes":1097,"./defaults":1099,"./hover":1100}],1102:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib");e.exports=function(t,e,r,a){var o=r("x"),s=r("y"),l=i.minRowLength(o),c=i.minRowLength(s);l&&c?(e._length=Math.min(l,c),n.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x","y"],a),(r("z")||r("marker.color"))&&r("histfunc"),r("histnorm"),r("autobinx"),r("autobiny")):e.visible=!1}},{"../../lib":778,"../../registry":911}],1103:[function(t,e,r){"use strict";var n=t("../histogram2d/attributes"),i=t("../contour/attributes"),a=t("../../components/colorscale/attributes"),o=t("../../lib/extend").extendFlat;e.exports=o({x:n.x,y:n.y,z:n.z,marker:n.marker,histnorm:n.histnorm,histfunc:n.histfunc,nbinsx:n.nbinsx,xbins:n.xbins,nbinsy:n.nbinsy,ybins:n.ybins,autobinx:n.autobinx,autobiny:n.autobiny,bingroup:n.bingroup,xbingroup:n.xbingroup,ybingroup:n.ybingroup,autocontour:i.autocontour,ncontours:i.ncontours,contours:i.contours,line:{color:i.line.color,width:o({},i.line.width,{dflt:.5}),dash:i.line.dash,smoothing:i.line.smoothing,editType:"plot"},zhoverformat:n.zhoverformat,hovertemplate:n.hovertemplate},a("",{cLetter:"z",editTypeOverride:"calc"}))},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../contour/attributes":1008,"../histogram2d/attributes":1097}],1104:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../histogram2d/sample_defaults"),a=t("../contour/contours_defaults"),o=t("../contour/style_defaults"),s=t("./attributes");e.exports=function(t,e,r,l){function c(r,i){return n.coerce(t,e,s,r,i)}i(t,e,c,l),!1!==e.visible&&(a(t,e,c,(function(r){return n.coerce2(t,e,s,r)})),o(t,e,c,l),c("hovertemplate"))}},{"../../lib":778,"../contour/contours_defaults":1015,"../contour/style_defaults":1029,"../histogram2d/sample_defaults":1102,"./attributes":1103}],1105:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),crossTraceDefaults:t("../histogram/cross_trace_defaults"),calc:t("../contour/calc"),plot:t("../contour/plot").plot,layerName:"contourlayer",style:t("../contour/style"),colorbar:t("../contour/colorbar"),hoverPoints:t("../contour/hover"),moduleType:"trace",name:"histogram2dcontour",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","2dMap","contour","histogram","showLegend"],meta:{}}},{"../../plots/cartesian":841,"../contour/calc":1009,"../contour/colorbar":1011,"../contour/hover":1021,"../contour/plot":1026,"../contour/style":1028,"../histogram/cross_trace_defaults":1091,"./attributes":1103,"./defaults":1104}],1106:[function(t,e,r){"use strict";for(var n=t("../../plots/attributes"),i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../../lib/extend").extendFlat,o=t("./constants").colormodel,s=["rgb","rgba","rgba256","hsl","hsla"],l=[],c=[],u=0;u<s.length;u++){var f=o[s[u]];l.push("For the `"+s[u]+"` colormodel, it is ["+(f.zminDflt||f.min).join(", ")+"]."),c.push("For the `"+s[u]+"` colormodel, it is ["+(f.zmaxDflt||f.max).join(", ")+"].")}e.exports=a({source:{valType:"string",editType:"calc"},z:{valType:"data_array",editType:"calc"},colormodel:{valType:"enumerated",values:s,editType:"calc"},zmin:{valType:"info_array",items:[{valType:"number",editType:"calc"},{valType:"number",editType:"calc"},{valType:"number",editType:"calc"},{valType:"number",editType:"calc"}],editType:"calc"},zmax:{valType:"info_array",items:[{valType:"number",editType:"calc"},{valType:"number",editType:"calc"},{valType:"number",editType:"calc"},{valType:"number",editType:"calc"}],editType:"calc"},x0:{valType:"any",dflt:0,editType:"calc+clearAxisTypes"},y0:{valType:"any",dflt:0,editType:"calc+clearAxisTypes"},dx:{valType:"number",dflt:1,editType:"calc"},dy:{valType:"number",dflt:1,editType:"calc"},text:{valType:"data_array",editType:"plot"},hovertext:{valType:"data_array",editType:"plot"},hoverinfo:a({},n.hoverinfo,{flags:["x","y","z","color","name","text"],dflt:"x+y+z+text+name"}),hovertemplate:i({},{keys:["z","color","colormodel"]}),transforms:void 0})},{"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"./constants":1108}],1107:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./constants"),a=t("fast-isnumeric"),o=t("../../plots/cartesian/axes"),s=t("../../lib").maxRowLength,l=t("./helpers").getImageSize;function c(t,e,r,i){return function(a){return n.constrain((a-t)*e,r,i)}}function u(t,e){return function(r){return n.constrain(r,t,e)}}e.exports=function(t,e){var r,n;if(e._hasZ)r=e.z.length,n=s(e.z);else if(e._hasSource){var f=l(e.source);r=f.height,n=f.width}var h,p=o.getFromId(t,e.xaxis||"x"),d=o.getFromId(t,e.yaxis||"y"),g=p.d2c(e.x0)-e.dx/2,m=d.d2c(e.y0)-e.dy/2,v=[g,g+n*e.dx],y=[m,m+r*e.dy];if(p&&"log"===p.type)for(h=0;h0||n.inbox(r-o.y0,r-(o.y0+o.h*s.dy),0)>0)){var u,f=Math.floor((e-o.x0)/s.dx),h=Math.floor(Math.abs(r-o.y0)/s.dy);if(s._hasZ?u=o.z[h][f]:s._hasSource&&(u=s._canvas.el.getContext("2d").getImageData(f,h,1,1).data),u){var p,d=o.hi||s.hoverinfo;if(d){var g=d.split("+");-1!==g.indexOf("all")&&(g=["color"]),-1!==g.indexOf("color")&&(p=!0)}var m,v=a.colormodel[s.colormodel],y=v.colormodel||s.colormodel,x=y.length,b=s._scaler(u),_=v.suffix,w=[];(s.hovertemplate||p)&&(w.push("["+[b[0]+_[0],b[1]+_[1],b[2]+_[2]].join(", ")),4===x&&w.push(", "+b[3]+_[3]),w.push("]"),w=w.join(""),t.extraText=y.toUpperCase()+": "+w),Array.isArray(s.hovertext)&&Array.isArray(s.hovertext[h])?m=s.hovertext[h][f]:Array.isArray(s.text)&&Array.isArray(s.text[h])&&(m=s.text[h][f]);var T=c.c2p(o.y0+(h+.5)*s.dy),k=o.x0+(f+.5)*s.dx,M=o.y0+(h+.5)*s.dy,A="["+u.slice(0,s.colormodel.length).join(", ")+"]";return[i.extendFlat(t,{index:[h,f],x0:l.c2p(o.x0+f*s.dx),x1:l.c2p(o.x0+(f+1)*s.dx),y0:T,y1:T,color:b,xVal:k,xLabelVal:k,yVal:M,yLabelVal:M,zLabelVal:A,text:m,hovertemplateLabels:{zLabel:A,colorLabel:w,"color[0]Label":b[0]+_[0],"color[1]Label":b[1]+_[1],"color[2]Label":b[2]+_[2],"color[3]Label":b[3]+_[3]}})]}}}},{"../../components/fx":683,"../../lib":778,"./constants":1108}],1113:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),style:t("./style"),hoverPoints:t("./hover"),eventData:t("./event_data"),moduleType:"trace",name:"image",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","2dMap","noSortingByValue"],animatable:!1,meta:{}}},{"../../plots/cartesian":841,"./attributes":1106,"./calc":1107,"./defaults":1109,"./event_data":1110,"./hover":1112,"./plot":1114,"./style":1115}],1114:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=i.strTranslate,o=t("../../constants/xmlns_namespaces"),s=t("./constants"),l=i.isIOS()||i.isSafari()||i.isIE();e.exports=function(t,e,r,c){var u=e.xaxis,f=e.yaxis,h=!(l||t._context._exportedPlot);i.makeTraceGroups(c,r,"im").each((function(e){var r=n.select(this),l=e[0],c=l.trace,p=h&&!c._hasZ&&c._hasSource&&"linear"===u.type&&"linear"===f.type;c._fastImage=p;var d,g,m,v,y,x,b=l.z,_=l.x0,w=l.y0,T=l.w,k=l.h,M=c.dx,A=c.dy;for(x=0;void 0===d&&x0;)g=u.c2p(_+x*M),x--;for(x=0;void 0===v&&x0;)y=f.c2p(w+x*A),x--;if(gP[0];if(z||O){var D=d+S/2,R=v+E/2;L+="transform:"+a(D+"px",R+"px")+"scale("+(z?-1:1)+","+(O?-1:1)+")"+a(-D+"px",-R+"px")+";"}}C.attr("style",L);var F=new Promise((function(t){if(c._hasZ)t();else if(c._hasSource)if(c._canvas&&c._canvas.el.width===T&&c._canvas.el.height===k&&c._canvas.source===c.source)t();else{var e=document.createElement("canvas");e.width=T,e.height=k;var r=e.getContext("2d");c._image=c._image||new Image;var n=c._image;n.onload=function(){r.drawImage(n,0,0),c._canvas={el:e,source:c.source},t()},n.setAttribute("src",c.source)}})).then((function(){var t;if(c._hasZ)t=B((function(t,e){return b[e][t]})).toDataURL("image/png");else if(c._hasSource)if(p)t=c.source;else{var e=c._canvas.el.getContext("2d").getImageData(0,0,T,k).data;t=B((function(t,r){var n=4*(r*T+t);return[e[n],e[n+1],e[n+2],e[n+3]]})).toDataURL("image/png")}C.attr({"xlink:href":t,height:E,width:S,x:d,y:v})}));t._promises.push(F)}function B(t){var e=document.createElement("canvas");e.width=S,e.height=E;var r,n=e.getContext("2d"),a=function(t){return i.constrain(Math.round(u.c2p(_+t*M)-d),0,S)},o=function(t){return i.constrain(Math.round(f.c2p(w+t*A)-v),0,E)},h=s.colormodel[c.colormodel],p=h.colormodel||c.colormodel,g=h.fmt;for(x=0;x0}function _(t){t.each((function(t){m.stroke(n.select(this),t.line.color)})).each((function(t){m.fill(n.select(this),t.color)})).style("stroke-width",(function(t){return t.line.width}))}function w(t,e,r){var n=t._fullLayout,a=i.extendFlat({type:"linear",ticks:"outside",range:r,showline:!0},e),o={type:"linear",_id:"x"+e._id},s={letter:"x",font:n.font,noHover:!0,noTickson:!0};function l(t,e){return i.coerce(a,o,g,t,e)}return p(a,o,l,s,n),d(a,o,l,s),o}function T(t,e,r){return[Math.min(e/t.width,r/t.height),t,e+"x"+r]}function k(t,e,r,i){var a=document.createElementNS("http://www.w3.org/2000/svg","text"),o=n.select(a);return o.text(t).attr("x",0).attr("y",0).attr("text-anchor",r).attr("data-unformatted",t).call(f.convertToTspans,i).call(c.font,e),c.bBox(o.node())}function M(t,e,r,n,a,o){var s="_cache"+e;t[s]&&t[s].key===a||(t[s]={key:a,value:r});var l=i.aggNums(o,null,[t[s].value,n],2);return t[s].value=l,l}e.exports=function(t,e,r,p){var d,g=t._fullLayout;b(r)&&p&&(d=p()),i.makeTraceGroups(g._indicatorlayer,e,"trace").each((function(e){var p,A,S,E,C,L=e[0].trace,I=n.select(this),P=L._hasGauge,z=L._isAngular,O=L._isBullet,D=L.domain,R={w:g._size.w*(D.x[1]-D.x[0]),h:g._size.h*(D.y[1]-D.y[0]),l:g._size.l+g._size.w*D.x[0],r:g._size.r+g._size.w*(1-D.x[1]),t:g._size.t+g._size.h*(1-D.y[1]),b:g._size.b+g._size.h*D.y[0]},F=R.l+R.w/2,B=R.t+R.h/2,N=Math.min(R.w/2,R.h),j=u.innerRadius*N,U=L.align||"center";if(A=B,P){if(z&&(p=F,A=B+N/2,S=function(t){return function(t,e){var r=Math.sqrt(t.width/2*(t.width/2)+t.height*t.height);return[e/r,t,e]}(t,.9*j)}),O){var V=u.bulletPadding,q=1-u.bulletNumberDomainSize+V;p=R.l+(q+(1-q)*y[U])*R.w,S=function(t){return T(t,(u.bulletNumberDomainSize-V)*R.w,R.h)}}}else p=R.l+y[U]*R.w,S=function(t){return T(t,R.w,R.h)};!function(t,e,r,s){var l,u,p,d=r[0].trace,g=s.numbersX,_=s.numbersY,T=d.align||"center",A=v[T],S=s.transitionOpts,E=s.onComplete,C=i.ensureSingle(e,"g","numbers"),L=[];d._hasNumber&&L.push("number");d._hasDelta&&(L.push("delta"),"left"===d.delta.position&&L.reverse());var I=C.selectAll("text").data(L);function P(e,r,n,i){if(!e.match("s")||n>=0==i>=0||r(n).slice(-1).match(x)||r(i).slice(-1).match(x))return r;var a=e.slice().replace("s","f").replace(/\d+/,(function(t){return parseInt(t)-1})),o=w(t,{tickformat:a});return function(t){return Math.abs(t)<1?h.tickText(o,t).text:r(t)}}I.enter().append("text"),I.attr("text-anchor",(function(){return A})).attr("class",(function(t){return t})).attr("x",null).attr("y",null).attr("dx",null).attr("dy",null),I.exit().remove();var z,O=d.mode+d.align;d._hasDelta&&(z=function(){var e=w(t,{tickformat:d.delta.valueformat},d._range);e.setScale(),h.prepTicks(e);var i=function(t){return h.tickText(e,t).text},a=function(t){return d.delta.relative?t.relativeDelta:t.delta},o=function(t,e){return 0===t||"number"!=typeof t||isNaN(t)?"-":(t>0?d.delta.increasing.symbol:d.delta.decreasing.symbol)+e(t)},s=function(t){return t.delta>=0?d.delta.increasing.color:d.delta.decreasing.color};void 0===d._deltaLastValue&&(d._deltaLastValue=a(r[0]));var l=C.select("text.delta");function p(){l.text(o(a(r[0]),i)).call(m.fill,s(r[0])).call(f.convertToTspans,t)}return l.call(c.font,d.delta.font).call(m.fill,s({delta:d._deltaLastValue})),b(S)?l.transition().duration(S.duration).ease(S.easing).tween("text",(function(){var t=n.select(this),e=a(r[0]),l=d._deltaLastValue,c=P(d.delta.valueformat,i,l,e),u=n.interpolateNumber(l,e);return d._deltaLastValue=e,function(e){t.text(o(u(e),c)),t.call(m.fill,s({delta:u(e)}))}})).each("end",(function(){p(),E&&E()})).each("interrupt",(function(){p(),E&&E()})):p(),u=k(o(a(r[0]),i),d.delta.font,A,t),l}(),O+=d.delta.position+d.delta.font.size+d.delta.font.family+d.delta.valueformat,O+=d.delta.increasing.symbol+d.delta.decreasing.symbol,p=u);d._hasNumber&&(!function(){var e=w(t,{tickformat:d.number.valueformat},d._range);e.setScale(),h.prepTicks(e);var i=function(t){return h.tickText(e,t).text},a=d.number.suffix,o=d.number.prefix,s=C.select("text.number");function u(){var e="number"==typeof r[0].y?o+i(r[0].y)+a:"-";s.text(e).call(c.font,d.number.font).call(f.convertToTspans,t)}b(S)?s.transition().duration(S.duration).ease(S.easing).each("end",(function(){u(),E&&E()})).each("interrupt",(function(){u(),E&&E()})).attrTween("text",(function(){var t=n.select(this),e=n.interpolateNumber(r[0].lastY,r[0].y);d._lastValue=r[0].y;var s=P(d.number.valueformat,i,r[0].lastY,r[0].y);return function(r){t.text(o+s(e(r))+a)}})):u(),l=k(o+i(r[0].y)+a,d.number.font,A,t)}(),O+=d.number.font.size+d.number.font.family+d.number.valueformat+d.number.suffix+d.number.prefix,p=l);if(d._hasDelta&&d._hasNumber){var D,R,F=[(l.left+l.right)/2,(l.top+l.bottom)/2],B=[(u.left+u.right)/2,(u.top+u.bottom)/2],N=.75*d.delta.font.size;"left"===d.delta.position&&(D=M(d,"deltaPos",0,-1*(l.width*y[d.align]+u.width*(1-y[d.align])+N),O,Math.min),R=F[1]-B[1],p={width:l.width+u.width+N,height:Math.max(l.height,u.height),left:u.left+D,right:l.right,top:Math.min(l.top,u.top+R),bottom:Math.max(l.bottom,u.bottom+R)}),"right"===d.delta.position&&(D=M(d,"deltaPos",0,l.width*(1-y[d.align])+u.width*y[d.align]+N,O,Math.max),R=F[1]-B[1],p={width:l.width+u.width+N,height:Math.max(l.height,u.height),left:l.left,right:u.right+D,top:Math.min(l.top,u.top+R),bottom:Math.max(l.bottom,u.bottom+R)}),"bottom"===d.delta.position&&(D=null,R=u.height,p={width:Math.max(l.width,u.width),height:l.height+u.height,left:Math.min(l.left,u.left),right:Math.max(l.right,u.right),top:l.bottom-l.height,bottom:l.bottom+u.height}),"top"===d.delta.position&&(D=null,R=l.top,p={width:Math.max(l.width,u.width),height:l.height+u.height,left:Math.min(l.left,u.left),right:Math.max(l.right,u.right),top:l.bottom-l.height-u.height,bottom:l.bottom}),z.attr({dx:D,dy:R})}(d._hasNumber||d._hasDelta)&&C.attr("transform",(function(){var t=s.numbersScaler(p);O+=t[2];var e,r=M(d,"numbersScale",1,t[0],O,Math.min);d._scaleNumbers||(r=1),e=d._isAngular?_-r*p.bottom:_-r*(p.top+p.bottom)/2,d._numbersTop=r*p.top+e;var n=p[T];"center"===T&&(n=(p.left+p.right)/2);var i=g-r*n;return i=M(d,"numbersTranslate",0,i,O,Math.max),o(i,e)+a(r)}))}(t,I,e,{numbersX:p,numbersY:A,numbersScaler:S,transitionOpts:r,onComplete:d}),P&&(E={range:L.gauge.axis.range,color:L.gauge.bgcolor,line:{color:L.gauge.bordercolor,width:0},thickness:1},C={range:L.gauge.axis.range,color:"rgba(0, 0, 0, 0)",line:{color:L.gauge.bordercolor,width:L.gauge.borderwidth},thickness:1});var H=I.selectAll("g.angular").data(z?e:[]);H.exit().remove();var G=I.selectAll("g.angularaxis").data(z?e:[]);G.exit().remove(),z&&function(t,e,r,i){var a,c,u,f,p=r[0].trace,d=i.size,g=i.radius,m=i.innerRadius,v=i.gaugeBg,y=i.gaugeOutline,x=[d.l+d.w/2,d.t+d.h/2+g/2],T=i.gauge,k=i.layer,M=i.transitionOpts,A=i.onComplete,S=Math.PI/2;function E(t){var e=p.gauge.axis.range[0],r=(t-e)/(p.gauge.axis.range[1]-e)*Math.PI-S;return r<-S?-S:r>S?S:r}function C(t){return n.svg.arc().innerRadius((m+g)/2-t/2*(g-m)).outerRadius((m+g)/2+t/2*(g-m)).startAngle(-S)}function L(t){t.attr("d",(function(t){return C(t.thickness).startAngle(E(t.range[0])).endAngle(E(t.range[1]))()}))}T.enter().append("g").classed("angular",!0),T.attr("transform",o(x[0],x[1])),k.enter().append("g").classed("angularaxis",!0).classed("crisp",!0),k.selectAll("g.xangularaxistick,path,text").remove(),(a=w(t,p.gauge.axis)).type="linear",a.range=p.gauge.axis.range,a._id="xangularaxis",a.setScale();var I=function(t){return(a.range[0]-t.x)/(a.range[1]-a.range[0])*Math.PI+Math.PI},P={},z=h.makeLabelFns(a,0).labelStandoff;P.xFn=function(t){var e=I(t);return Math.cos(e)*z},P.yFn=function(t){var e=I(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(z+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*l)},P.anchorFn=function(t){var e=I(t),r=Math.cos(e);return Math.abs(r)<.1?"middle":r>0?"start":"end"},P.heightFn=function(t,e,r){var n=I(t);return-.5*(1+Math.sin(n))*r};var O=function(t){return o(x[0]+g*Math.cos(t),x[1]-g*Math.sin(t))};u=function(t){return O(I(t))};if(c=h.calcTicks(a),f=h.getTickSigns(a)[2],a.visible){f="inside"===a.ticks?-1:1;var D=(a.linewidth||1)/2;h.drawTicks(t,a,{vals:c,layer:k,path:"M"+f*D+",0h"+f*a.ticklen,transFn:function(t){var e=I(t);return O(e)+"rotate("+-s(e)+")"}}),h.drawLabels(t,a,{vals:c,layer:k,transFn:u,labelFns:P})}var R=[v].concat(p.gauge.steps),F=T.selectAll("g.bg-arc").data(R);F.enter().append("g").classed("bg-arc",!0).append("path"),F.select("path").call(L).call(_),F.exit().remove();var B=C(p.gauge.bar.thickness),N=T.selectAll("g.value-arc").data([p.gauge.bar]);N.enter().append("g").classed("value-arc",!0).append("path");var j=N.select("path");b(M)?(j.transition().duration(M.duration).ease(M.easing).each("end",(function(){A&&A()})).each("interrupt",(function(){A&&A()})).attrTween("d",(U=B,V=E(r[0].lastY),q=E(r[0].y),function(){var t=n.interpolate(V,q);return function(e){return U.endAngle(t(e))()}})),p._lastValue=r[0].y):j.attr("d","number"==typeof r[0].y?B.endAngle(E(r[0].y)):"M0,0Z");var U,V,q;j.call(_),N.exit().remove(),R=[];var H=p.gauge.threshold.value;H&&R.push({range:[H,H],color:p.gauge.threshold.color,line:{color:p.gauge.threshold.line.color,width:p.gauge.threshold.line.width},thickness:p.gauge.threshold.thickness});var G=T.selectAll("g.threshold-arc").data(R);G.enter().append("g").classed("threshold-arc",!0).append("path"),G.select("path").call(L).call(_),G.exit().remove();var Y=T.selectAll("g.gauge-outline").data([y]);Y.enter().append("g").classed("gauge-outline",!0).append("path"),Y.select("path").call(L).call(_),Y.exit().remove()}(t,0,e,{radius:N,innerRadius:j,gauge:H,layer:G,size:R,gaugeBg:E,gaugeOutline:C,transitionOpts:r,onComplete:d});var Y=I.selectAll("g.bullet").data(O?e:[]);Y.exit().remove();var W=I.selectAll("g.bulletaxis").data(O?e:[]);W.exit().remove(),O&&function(t,e,r,n){var i,a,s,l,c,f=r[0].trace,p=n.gauge,d=n.layer,g=n.gaugeBg,v=n.gaugeOutline,y=n.size,x=f.domain,T=n.transitionOpts,k=n.onComplete;p.enter().append("g").classed("bullet",!0),p.attr("transform",o(y.l,y.t)),d.enter().append("g").classed("bulletaxis",!0).classed("crisp",!0),d.selectAll("g.xbulletaxistick,path,text").remove();var M=y.h,A=f.gauge.bar.thickness*M,S=x.x[0],E=x.x[0]+(x.x[1]-x.x[0])*(f._hasNumber||f._hasDelta?1-u.bulletNumberDomainSize:1);(i=w(t,f.gauge.axis))._id="xbulletaxis",i.domain=[S,E],i.setScale(),a=h.calcTicks(i),s=h.makeTransTickFn(i),l=h.getTickSigns(i)[2],c=y.t+y.h,i.visible&&(h.drawTicks(t,i,{vals:"inside"===i.ticks?h.clipEnds(i,a):a,layer:d,path:h.makeTickPath(i,c,l),transFn:s}),h.drawLabels(t,i,{vals:a,layer:d,transFn:s,labelFns:h.makeLabelFns(i,c)}));function C(t){t.attr("width",(function(t){return Math.max(0,i.c2p(t.range[1])-i.c2p(t.range[0]))})).attr("x",(function(t){return i.c2p(t.range[0])})).attr("y",(function(t){return.5*(1-t.thickness)*M})).attr("height",(function(t){return t.thickness*M}))}var L=[g].concat(f.gauge.steps),I=p.selectAll("g.bg-bullet").data(L);I.enter().append("g").classed("bg-bullet",!0).append("rect"),I.select("rect").call(C).call(_),I.exit().remove();var P=p.selectAll("g.value-bullet").data([f.gauge.bar]);P.enter().append("g").classed("value-bullet",!0).append("rect"),P.select("rect").attr("height",A).attr("y",(M-A)/2).call(_),b(T)?P.select("rect").transition().duration(T.duration).ease(T.easing).each("end",(function(){k&&k()})).each("interrupt",(function(){k&&k()})).attr("width",Math.max(0,i.c2p(Math.min(f.gauge.axis.range[1],r[0].y)))):P.select("rect").attr("width","number"==typeof r[0].y?Math.max(0,i.c2p(Math.min(f.gauge.axis.range[1],r[0].y))):0);P.exit().remove();var z=r.filter((function(){return f.gauge.threshold.value})),O=p.selectAll("g.threshold-bullet").data(z);O.enter().append("g").classed("threshold-bullet",!0).append("line"),O.select("line").attr("x1",i.c2p(f.gauge.threshold.value)).attr("x2",i.c2p(f.gauge.threshold.value)).attr("y1",(1-f.gauge.threshold.thickness)/2*M).attr("y2",(1-(1-f.gauge.threshold.thickness)/2)*M).call(m.stroke,f.gauge.threshold.line.color).style("stroke-width",f.gauge.threshold.line.width),O.exit().remove();var D=p.selectAll("g.gauge-outline").data([v]);D.enter().append("g").classed("gauge-outline",!0).append("rect"),D.select("rect").call(C).call(_),D.exit().remove()}(t,0,e,{gauge:Y,layer:W,size:R,gaugeBg:E,gaugeOutline:C,transitionOpts:r,onComplete:d});var X=I.selectAll("text.title").data(e);X.exit().remove(),X.enter().append("text").classed("title",!0),X.attr("text-anchor",(function(){return O?v.right:v[L.title.align]})).text(L.title.text).call(c.font,L.title.font).call(f.convertToTspans,t),X.attr("transform",(function(){var t,e=R.l+R.w*y[L.title.align],r=u.titlePadding,n=c.bBox(X.node());if(P){if(z)if(L.gauge.axis.visible)t=c.bBox(G.node()).top-r-n.bottom;else t=R.t+R.h/2-N/2-n.bottom-r;O&&(t=A-(n.top+n.bottom)/2,e=R.l-u.bulletPadding*R.w)}else t=L._numbersTop-r-n.bottom;return o(e,t)}))}))}},{"../../components/color":643,"../../components/drawing":665,"../../constants/alignment":745,"../../lib":778,"../../lib/svg_text_utils":803,"../../plots/cartesian/axes":828,"../../plots/cartesian/axis_defaults":830,"../../plots/cartesian/layout_attributes":842,"../../plots/cartesian/position_defaults":845,"./constants":1119,d3:169}],1123:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../mesh3d/attributes"),o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat,l=t("../../plot_api/edit_types").overrideAll;var c=e.exports=l(s({x:{valType:"data_array"},y:{valType:"data_array"},z:{valType:"data_array"},value:{valType:"data_array"},isomin:{valType:"number"},isomax:{valType:"number"},surface:{show:{valType:"boolean",dflt:!0},count:{valType:"integer",dflt:2,min:1},fill:{valType:"number",min:0,max:1,dflt:1},pattern:{valType:"flaglist",flags:["A","B","C","D","E"],extras:["all","odd","even"],dflt:"all"}},spaceframe:{show:{valType:"boolean",dflt:!1},fill:{valType:"number",min:0,max:1,dflt:.15}},slices:{x:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}},y:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}},z:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}}},caps:{x:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}},y:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}},z:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}}},text:{valType:"string",dflt:"",arrayOk:!0},hovertext:{valType:"string",dflt:"",arrayOk:!0},hovertemplate:i(),showlegend:s({},o.showlegend,{dflt:!1})},n("",{colorAttr:"`value`",showScaleDflt:!0,editTypeOverride:"calc"}),{opacity:a.opacity,lightposition:a.lightposition,lighting:a.lighting,flatshading:a.flatshading,contour:a.contour,hoverinfo:s({},o.hoverinfo)}),"calc","nested");c.flatshading.dflt=!0,c.lighting.facenormalsepsilon.dflt=0,c.x.editType=c.y.editType=c.z.editType=c.value.editType="calc+clearAxisTypes",c.transforms=void 0},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plot_api/edit_types":810,"../../plots/attributes":824,"../../plots/template_attributes":906,"../mesh3d/attributes":1128}],1124:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc"),i=t("../streamtube/calc").processGrid,a=t("../streamtube/calc").filter;e.exports=function(t,e){e._len=Math.min(e.x.length,e.y.length,e.z.length,e.value.length),e._x=a(e.x,e._len),e._y=a(e.y,e._len),e._z=a(e.z,e._len),e._value=a(e.value,e._len);var r=i(e);e._gridFill=r.fill,e._Xs=r.Xs,e._Ys=r.Ys,e._Zs=r.Zs,e._len=r.len;for(var o=1/0,s=-1/0,l=0;l0;r--){var n=Math.min(e[r],e[r-1]),i=Math.max(e[r],e[r-1]);if(i>n&&n-1}function R(t,e){return null===t?e:t}function F(e,r,n){L();var i,a,o,l=[r],c=[n];if(s>=1)l=[r],c=[n];else if(s>0){var u=function(t,e){var r=t[0],n=t[1],i=t[2],a=function(t,e,r){for(var n=[],i=0;i-1?n[p]:C(d,g,v);h[p]=x>-1?x:P(d,g,v,R(e,y))}i=h[0],a=h[1],o=h[2],t._meshI.push(i),t._meshJ.push(a),t._meshK.push(o),++m}}function B(t,e,r,n){var i=t[3];in&&(i=n);for(var a=(t[3]-i)/(t[3]-e[3]+1e-9),o=[],s=0;s<4;s++)o[s]=(1-a)*t[s]+a*e[s];return o}function N(t,e,r){return t>=e&&t<=r}function j(t){var e=.001*(E-S);return t>=S-e&&t<=E+e}function U(e){for(var r=[],n=0;n<4;n++){var i=e[n];r.push([t._x[i],t._y[i],t._z[i],t._value[i]])}return r}function V(t,e,r,n,i,a){a||(a=1),r=[-1,-1,-1];var o=!1,s=[N(e[0][3],n,i),N(e[1][3],n,i),N(e[2][3],n,i)];if(!s[0]&&!s[1]&&!s[2])return!1;var l=function(t,e,r){return j(e[0][3])&&j(e[1][3])&&j(e[2][3])?(F(t,e,r),!0):a<3&&V(t,e,r,S,E,++a)};if(s[0]&&s[1]&&s[2])return l(t,e,r)||o;var c=!1;return[[0,1,2],[2,0,1],[1,2,0]].forEach((function(a){if(s[a[0]]&&s[a[1]]&&!s[a[2]]){var u=e[a[0]],f=e[a[1]],h=e[a[2]],p=B(h,u,n,i),d=B(h,f,n,i);o=l(t,[d,p,u],[-1,-1,r[a[0]]])||o,o=l(t,[u,f,d],[r[a[0]],r[a[1]],-1])||o,c=!0}})),c||[[0,1,2],[1,2,0],[2,0,1]].forEach((function(a){if(s[a[0]]&&!s[a[1]]&&!s[a[2]]){var u=e[a[0]],f=e[a[1]],h=e[a[2]],p=B(f,u,n,i),d=B(h,u,n,i);o=l(t,[d,p,u],[-1,-1,r[a[0]]])||o,c=!0}})),o}function q(t,e,r,n){var i=!1,a=U(e),o=[N(a[0][3],r,n),N(a[1][3],r,n),N(a[2][3],r,n),N(a[3][3],r,n)];if(!(o[0]||o[1]||o[2]||o[3]))return i;if(o[0]&&o[1]&&o[2]&&o[3])return g&&(i=function(t,e,r){var n=function(n,i,a){F(t,[e[n],e[i],e[a]],[r[n],r[i],r[a]])};n(0,1,2),n(3,0,1),n(2,3,0),n(1,2,3)}(t,a,e)||i),i;var s=!1;return[[0,1,2,3],[3,0,1,2],[2,3,0,1],[1,2,3,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]];if(g)i=F(t,[c,u,f],[e[l[0]],e[l[1]],e[l[2]]])||i;else{var p=B(h,c,r,n),d=B(h,u,r,n),m=B(h,f,r,n);i=F(null,[p,d,m],[-1,-1,-1])||i}s=!0}})),s?i:([[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2],[0,2,3,1],[1,3,2,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]],p=B(f,c,r,n),d=B(f,u,r,n),m=B(h,u,r,n),v=B(h,c,r,n);g?(i=F(t,[c,v,p],[e[l[0]],-1,-1])||i,i=F(t,[u,d,m],[e[l[1]],-1,-1])||i):i=function(t,e,r){var n=function(n,i,a){F(t,[e[n],e[i],e[a]],[r[n],r[i],r[a]])};n(0,1,2),n(2,3,0)}(null,[p,d,m,v],[-1,-1,-1,-1])||i,s=!0}})),s||[[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2]].forEach((function(l){if(o[l[0]]&&!o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]],p=B(u,c,r,n),d=B(f,c,r,n),m=B(h,c,r,n);g?(i=F(t,[c,p,d],[e[l[0]],-1,-1])||i,i=F(t,[c,d,m],[e[l[0]],-1,-1])||i,i=F(t,[c,m,p],[e[l[0]],-1,-1])||i):i=F(null,[p,d,m],[-1,-1,-1])||i,s=!0}})),i)}function H(t,e,r,n,i,a,o,s,l,c,u){var f=!1;return d&&(D(t,"A")&&(f=q(null,[e,r,n,a],c,u)||f),D(t,"B")&&(f=q(null,[r,n,i,l],c,u)||f),D(t,"C")&&(f=q(null,[r,a,o,l],c,u)||f),D(t,"D")&&(f=q(null,[n,a,s,l],c,u)||f),D(t,"E")&&(f=q(null,[r,n,a,l],c,u)||f)),g&&(f=q(t,[r,n,a,l],c,u)||f),f}function G(t,e,r,n,i,a,o,s){return[!0===s[0]||V(t,U([e,r,n]),[e,r,n],a,o),!0===s[1]||V(t,U([n,i,e]),[n,i,e],a,o)]}function Y(t,e,r,n,i,a,o,s,l){return s?G(t,e,r,i,n,a,o,l):G(t,r,i,n,e,a,o,l)}function W(t,e,r,n,i,a,o){var s,l,c,u,f=!1,h=function(){f=V(t,[s,l,c],[-1,-1,-1],i,a)||f,f=V(t,[c,u,s],[-1,-1,-1],i,a)||f},p=o[0],d=o[1],g=o[2];return p&&(s=z(U([k(e,r-0,n-0)])[0],U([k(e-1,r-0,n-0)])[0],p),l=z(U([k(e,r-0,n-1)])[0],U([k(e-1,r-0,n-1)])[0],p),c=z(U([k(e,r-1,n-1)])[0],U([k(e-1,r-1,n-1)])[0],p),u=z(U([k(e,r-1,n-0)])[0],U([k(e-1,r-1,n-0)])[0],p),h()),d&&(s=z(U([k(e-0,r,n-0)])[0],U([k(e-0,r-1,n-0)])[0],d),l=z(U([k(e-0,r,n-1)])[0],U([k(e-0,r-1,n-1)])[0],d),c=z(U([k(e-1,r,n-1)])[0],U([k(e-1,r-1,n-1)])[0],d),u=z(U([k(e-1,r,n-0)])[0],U([k(e-1,r-1,n-0)])[0],d),h()),g&&(s=z(U([k(e-0,r-0,n)])[0],U([k(e-0,r-0,n-1)])[0],g),l=z(U([k(e-0,r-1,n)])[0],U([k(e-0,r-1,n-1)])[0],g),c=z(U([k(e-1,r-1,n)])[0],U([k(e-1,r-1,n-1)])[0],g),u=z(U([k(e-1,r-0,n)])[0],U([k(e-1,r-0,n-1)])[0],g),h()),f}function X(t,e,r,n,i,a,o,s,l,c,u,f){var h=t;return f?(d&&"even"===t&&(h=null),H(h,e,r,n,i,a,o,s,l,c,u)):(d&&"odd"===t&&(h=null),H(h,l,s,o,a,i,n,r,e,c,u))}function Z(t,e,r,n,i){for(var a=[],o=0,s=0;sMath.abs(d-A)?[M,d]:[d,A];$(e,T[0],T[1])}}var C=[[Math.min(S,A),Math.max(S,A)],[Math.min(M,E),Math.max(M,E)]];["x","y","z"].forEach((function(e){for(var r=[],n=0;n0&&(u.push(p.id),"x"===e?f.push([p.distRatio,0,0]):"y"===e?f.push([0,p.distRatio,0]):f.push([0,0,p.distRatio]))}else c=nt(1,"x"===e?b-1:"y"===e?_-1:w-1);u.length>0&&(r[i]="x"===e?tt(null,u,a,o,f,r[i]):"y"===e?et(null,u,a,o,f,r[i]):rt(null,u,a,o,f,r[i]),i++),c.length>0&&(r[i]="x"===e?Z(null,c,a,o,r[i]):"y"===e?J(null,c,a,o,r[i]):K(null,c,a,o,r[i]),i++)}var d=t.caps[e];d.show&&d.fill&&(O(d.fill),r[i]="x"===e?Z(null,[0,b-1],a,o,r[i]):"y"===e?J(null,[0,_-1],a,o,r[i]):K(null,[0,w-1],a,o,r[i]),i++)}})),0===m&&I(),t._meshX=n,t._meshY=i,t._meshZ=a,t._meshIntensity=o,t._Xs=v,t._Ys=y,t._Zs=x}(),t}e.exports={findNearestOnAxis:l,generateIsoMeshes:h,createIsosurfaceTrace:function(t,e){var r=t.glplot.gl,i=n({gl:r}),a=new c(t,i,e.uid);return i._trace=a,a.update(e),t.glplot.add(i),a}}},{"../../components/colorscale":655,"../../lib/gl_format_color":774,"../../lib/str2rgbarray":802,"../../plots/gl3d/zip3":881,"gl-mesh3d":309}],1126:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry"),a=t("./attributes"),o=t("../../components/colorscale/defaults");function s(t,e,r,n,a){var s=a("isomin"),l=a("isomax");null!=l&&null!=s&&s>l&&(e.isomin=null,e.isomax=null);var c=a("x"),u=a("y"),f=a("z"),h=a("value");c&&c.length&&u&&u.length&&f&&f.length&&h&&h.length?(i.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x","y","z"],n),["x","y","z"].forEach((function(t){var e="caps."+t;a(e+".show")&&a(e+".fill");var r="slices."+t;a(r+".show")&&(a(r+".fill"),a(r+".locations"))})),a("spaceframe.show")&&a("spaceframe.fill"),a("surface.show")&&(a("surface.count"),a("surface.fill"),a("surface.pattern")),a("contour.show")&&(a("contour.color"),a("contour.width")),["text","hovertext","hovertemplate","lighting.ambient","lighting.diffuse","lighting.specular","lighting.roughness","lighting.fresnel","lighting.vertexnormalsepsilon","lighting.facenormalsepsilon","lightposition.x","lightposition.y","lightposition.z","flatshading","opacity"].forEach((function(t){a(t)})),o(t,e,n,a,{prefix:"",cLetter:"c"}),e._length=null):e.visible=!1}e.exports={supplyDefaults:function(t,e,r,i){s(t,e,r,i,(function(r,i){return n.coerce(t,e,a,r,i)}))},supplyIsoDefaults:s}},{"../../components/colorscale/defaults":653,"../../lib":778,"../../registry":911,"./attributes":1123}],1127:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults").supplyDefaults,calc:t("./calc"),colorbar:{min:"cmin",max:"cmax"},plot:t("./convert").createIsosurfaceTrace,moduleType:"trace",name:"isosurface",basePlotModule:t("../../plots/gl3d"),categories:["gl3d","showLegend"],meta:{}}},{"../../plots/gl3d":870,"./attributes":1123,"./calc":1124,"./convert":1125,"./defaults":1126}],1128:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../surface/attributes"),o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat;e.exports=s({x:{valType:"data_array",editType:"calc+clearAxisTypes"},y:{valType:"data_array",editType:"calc+clearAxisTypes"},z:{valType:"data_array",editType:"calc+clearAxisTypes"},i:{valType:"data_array",editType:"calc"},j:{valType:"data_array",editType:"calc"},k:{valType:"data_array",editType:"calc"},text:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertemplate:i({editType:"calc"}),delaunayaxis:{valType:"enumerated",values:["x","y","z"],dflt:"z",editType:"calc"},alphahull:{valType:"number",dflt:-1,editType:"calc"},intensity:{valType:"data_array",editType:"calc"},intensitymode:{valType:"enumerated",values:["vertex","cell"],dflt:"vertex",editType:"calc"},color:{valType:"color",editType:"calc"},vertexcolor:{valType:"data_array",editType:"calc"},facecolor:{valType:"data_array",editType:"calc"},transforms:void 0},n("",{colorAttr:"`intensity`",showScaleDflt:!0,editTypeOverride:"calc"}),{opacity:a.opacity,flatshading:{valType:"boolean",dflt:!1,editType:"calc"},contour:{show:s({},a.contours.x.show,{}),color:a.contours.x.color,width:a.contours.x.width,editType:"calc"},lightposition:{x:s({},a.lightposition.x,{dflt:1e5}),y:s({},a.lightposition.y,{dflt:1e5}),z:s({},a.lightposition.z,{dflt:0}),editType:"calc"},lighting:s({vertexnormalsepsilon:{valType:"number",min:0,max:1,dflt:1e-12,editType:"calc"},facenormalsepsilon:{valType:"number",min:0,max:1,dflt:1e-6,editType:"calc"},editType:"calc"},a.lighting),hoverinfo:s({},o.hoverinfo,{editType:"calc"}),showlegend:s({},o.showlegend,{dflt:!1})})},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../surface/attributes":1311}],1129:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc");e.exports=function(t,e){e.intensity&&n(t,e,{vals:e.intensity,containerStr:"",cLetter:"c"})}},{"../../components/colorscale/calc":651}],1130:[function(t,e,r){"use strict";var n=t("gl-mesh3d"),i=t("delaunay-triangulate"),a=t("alpha-shape"),o=t("convex-hull"),s=t("../../lib/gl_format_color").parseColorScale,l=t("../../lib/str2rgbarray"),c=t("../../components/colorscale").extractOpts,u=t("../../plots/gl3d/zip3");function f(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name="",this.color="#fff",this.data=null,this.showContour=!1}var h=f.prototype;function p(t){for(var e=[],r=t.length,n=0;n=e-.5)return!1;return!0}h.handlePick=function(t){if(t.object===this.mesh){var e=t.index=t.data.index;t.data._cellCenter?t.traceCoordinate=t.data.dataCoordinate:t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]];var r=this.data.hovertext||this.data.text;return Array.isArray(r)&&void 0!==r[e]?t.textLabel=r[e]:r&&(t.textLabel=r),!0}},h.update=function(t){var e=this.scene,r=e.fullSceneLayout;this.data=t;var n,f=t.x.length,h=u(d(r.xaxis,t.x,e.dataScale[0],t.xcalendar),d(r.yaxis,t.y,e.dataScale[1],t.ycalendar),d(r.zaxis,t.z,e.dataScale[2],t.zcalendar));if(t.i&&t.j&&t.k){if(t.i.length!==t.j.length||t.j.length!==t.k.length||!m(t.i,f)||!m(t.j,f)||!m(t.k,f))return;n=u(g(t.i),g(t.j),g(t.k))}else n=0===t.alphahull?o(h):t.alphahull>0?a(t.alphahull,h):function(t,e){for(var r=["x","y","z"].indexOf(t),n=[],a=e.length,o=0;ov):m=M>w,v=M;var A=c(w,T,k,M);A.pos=_,A.yc=(w+M)/2,A.i=b,A.dir=m?"increasing":"decreasing",A.x=A.pos,A.y=[k,T],y&&(A.orig_p=r[b]),d&&(A.tx=e.text[b]),g&&(A.htx=e.hovertext[b]),x.push(A)}else x.push({pos:_,empty:!0})}return e._extremes[l._id]=a.findExtremes(l,n.concat(h,f),{padded:!0}),x.length&&(x[0].t={labels:{open:i(t,"open:")+" ",high:i(t,"high:")+" ",low:i(t,"low:")+" ",close:i(t,"close:")+" "}}),x}e.exports={calc:function(t,e){var r=a.getFromId(t,e.xaxis),i=a.getFromId(t,e.yaxis),s=function(t,e,r){var i=r._minDiff;if(!i){var a,s=t._fullData,l=[];for(i=1/0,a=0;a"+c.labels[x]+n.hoverLabelText(s,b):((y=i.extendFlat({},h)).y0=y.y1=_,y.yLabelVal=b,y.yLabel=c.labels[x]+n.hoverLabelText(s,b),y.name="",f.push(y),m[b]=y)}return f}function h(t,e,r,i){var a=t.cd,o=t.ya,l=a[0].trace,f=a[0].t,h=u(t,e,r,i);if(!h)return[];var p=a[h.index],d=h.index=p.i,g=p.dir;function m(t){return f.labels[t]+n.hoverLabelText(o,l[t][d])}var v=p.hi||l.hoverinfo,y=v.split("+"),x="all"===v,b=x||-1!==y.indexOf("y"),_=x||-1!==y.indexOf("text"),w=b?[m("open"),m("high"),m("low"),m("close")+" "+c[g]]:[];return _&&s(p,l,w),h.extraText=w.join("
"),h.y0=h.y1=o.c2p(p.yc,!0),[h]}e.exports={hoverPoints:function(t,e,r,n){return t.cd[0].trace.hoverlabel.split?f(t,e,r,n):h(t,e,r,n)},hoverSplit:f,hoverOnPoints:h}},{"../../components/color":643,"../../components/fx":683,"../../constants/delta.js":747,"../../lib":778,"../../plots/cartesian/axes":828}],1137:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"ohlc",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","showLegend"],meta:{},attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc").calc,plot:t("./plot"),style:t("./style"),hoverPoints:t("./hover").hoverPoints,selectPoints:t("./select")}},{"../../plots/cartesian":841,"./attributes":1133,"./calc":1134,"./defaults":1135,"./hover":1136,"./plot":1139,"./select":1140,"./style":1141}],1138:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib");e.exports=function(t,e,r,a){var o=r("x"),s=r("open"),l=r("high"),c=r("low"),u=r("close");if(r("hoverlabel.split"),n.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x"],a),s&&l&&c&&u){var f=Math.min(s.length,l.length,c.length,u.length);return o&&(f=Math.min(f,i.minRowLength(o))),e._length=f,f}}},{"../../lib":778,"../../registry":911}],1139:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib");e.exports=function(t,e,r,a){var o=e.yaxis,s=e.xaxis,l=!!s.rangebreaks;i.makeTraceGroups(a,r,"trace ohlc").each((function(t){var e=n.select(this),r=t[0],a=r.t;if(!0!==r.trace.visible||a.empty)e.remove();else{var c=a.tickLen,u=e.selectAll("path").data(i.identity);u.enter().append("path"),u.exit().remove(),u.attr("d",(function(t){if(t.empty)return"M0,0Z";var e=s.c2p(t.pos-c,!0),r=s.c2p(t.pos+c,!0),n=l?(e+r)/2:s.c2p(t.pos,!0);return"M"+e+","+o.c2p(t.o,!0)+"H"+n+"M"+n+","+o.c2p(t.h,!0)+"V"+o.c2p(t.l,!0)+"M"+r+","+o.c2p(t.c,!0)+"H"+n}))}}))}},{"../../lib":778,d3:169}],1140:[function(t,e,r){"use strict";e.exports=function(t,e){var r,n=t.cd,i=t.xaxis,a=t.yaxis,o=[],s=n[0].t.bPos||0;if(!1===e)for(r=0;r=t.length)return!1;if(void 0!==e[t[r]])return!1;e[t[r]]=!0}return!0}(t.map((function(t){return t.displayindex}))))for(e=0;e0;c&&(o="array");var u=r("categoryorder",o);"array"===u?(r("categoryarray"),r("ticktext")):(delete t.categoryarray,delete t.ticktext),c||"array"!==u||(e.categoryorder="trace")}}e.exports=function(t,e,r,f){function h(r,i){return n.coerce(t,e,l,r,i)}var p=s(t,e,{name:"dimensions",handleItemDefaults:u}),d=function(t,e,r,o,s){s("line.shape"),s("line.hovertemplate");var l=s("line.color",o.colorway[0]);if(i(t,"line")&&n.isArrayOrTypedArray(l)){if(l.length)return s("line.colorscale"),a(t,e,o,s,{prefix:"line.",cLetter:"c"}),l.length;e.line.color=r}return 1/0}(t,e,r,f,h);o(e,f,h),Array.isArray(p)&&p.length||(e.visible=!1),c(e,p,"values",d),h("hoveron"),h("hovertemplate"),h("arrangement"),h("bundlecolors"),h("sortpaths"),h("counts");var g={family:f.font.family,size:Math.round(f.font.size),color:f.font.color};n.coerceFont(h,"labelfont",g);var m={family:f.font.family,size:Math.round(f.font.size/1.2),color:f.font.color};n.coerceFont(h,"tickfont",m)}},{"../../components/colorscale/defaults":653,"../../components/colorscale/helpers":654,"../../lib":778,"../../plots/array_container_defaults":823,"../../plots/domain":855,"../parcoords/merge_length":1158,"./attributes":1142}],1146:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),colorbar:{container:"line",min:"cmin",max:"cmax"},moduleType:"trace",name:"parcats",basePlotModule:t("./base_plot"),categories:["noOpacity"],meta:{}}},{"./attributes":1142,"./base_plot":1143,"./calc":1144,"./defaults":1145,"./plot":1148}],1147:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../plot_api/plot_api"),a=t("../../components/fx"),o=t("../../lib"),s=o.strTranslate,l=t("../../components/drawing"),c=t("tinycolor2"),u=t("../../lib/svg_text_utils");function f(t,e,r,i){var a=t.map(R.bind(0,e,r)),c=i.selectAll("g.parcatslayer").data([null]);c.enter().append("g").attr("class","parcatslayer").style("pointer-events","all");var f=c.selectAll("g.trace.parcats").data(a,h),v=f.enter().append("g").attr("class","trace parcats");f.attr("transform",(function(t){return s(t.x,t.y)})),v.append("g").attr("class","paths");var y=f.select("g.paths").selectAll("path.path").data((function(t){return t.paths}),h);y.attr("fill",(function(t){return t.model.color}));var _=y.enter().append("path").attr("class","path").attr("stroke-opacity",0).attr("fill",(function(t){return t.model.color})).attr("fill-opacity",0);b(_),y.attr("d",(function(t){return t.svgD})),_.empty()||y.sort(d),y.exit().remove(),y.on("mouseover",g).on("mouseout",m).on("click",x),v.append("g").attr("class","dimensions");var k=f.select("g.dimensions").selectAll("g.dimension").data((function(t){return t.dimensions}),h);k.enter().append("g").attr("class","dimension"),k.attr("transform",(function(t){return s(t.x,0)})),k.exit().remove();var M=k.selectAll("g.category").data((function(t){return t.categories}),h),A=M.enter().append("g").attr("class","category");M.attr("transform",(function(t){return s(0,t.y)})),A.append("rect").attr("class","catrect").attr("pointer-events","none"),M.select("rect.catrect").attr("fill","none").attr("width",(function(t){return t.width})).attr("height",(function(t){return t.height})),w(A);var S=M.selectAll("rect.bandrect").data((function(t){return t.bands}),h);S.each((function(){o.raiseToTop(this)})),S.attr("fill",(function(t){return t.color}));var z=S.enter().append("rect").attr("class","bandrect").attr("stroke-opacity",0).attr("fill",(function(t){return t.color})).attr("fill-opacity",0);S.attr("fill",(function(t){return t.color})).attr("width",(function(t){return t.width})).attr("height",(function(t){return t.height})).attr("y",(function(t){return t.y})).attr("cursor",(function(t){return"fixed"===t.parcatsViewModel.arrangement?"default":"perpendicular"===t.parcatsViewModel.arrangement?"ns-resize":"move"})),T(z),S.exit().remove(),A.append("text").attr("class","catlabel").attr("pointer-events","none");var O=e._fullLayout.paper_bgcolor;M.select("text.catlabel").attr("text-anchor",(function(t){return p(t)?"start":"end"})).attr("alignment-baseline","middle").style("text-shadow",O+" -1px 1px 2px, "+O+" 1px 1px 2px, "+O+" 1px -1px 2px, "+O+" -1px -1px 2px").style("fill","rgb(0, 0, 0)").attr("x",(function(t){return p(t)?t.width+5:-5})).attr("y",(function(t){return t.height/2})).text((function(t){return t.model.categoryLabel})).each((function(t){l.font(n.select(this),t.parcatsViewModel.categorylabelfont),u.convertToTspans(n.select(this),e)})),A.append("text").attr("class","dimlabel"),M.select("text.dimlabel").attr("text-anchor","middle").attr("alignment-baseline","baseline").attr("cursor",(function(t){return"fixed"===t.parcatsViewModel.arrangement?"default":"ew-resize"})).attr("x",(function(t){return t.width/2})).attr("y",-5).text((function(t,e){return 0===e?t.parcatsViewModel.model.dimensions[t.model.dimensionInd].dimensionLabel:null})).each((function(t){l.font(n.select(this),t.parcatsViewModel.labelfont)})),M.selectAll("rect.bandrect").on("mouseover",E).on("mouseout",C),M.exit().remove(),k.call(n.behavior.drag().origin((function(t){return{x:t.x,y:0}})).on("dragstart",L).on("drag",I).on("dragend",P)),f.each((function(t){t.traceSelection=n.select(this),t.pathSelection=n.select(this).selectAll("g.paths").selectAll("path.path"),t.dimensionSelection=n.select(this).selectAll("g.dimensions").selectAll("g.dimension")})),f.exit().remove()}function h(t){return t.key}function p(t){var e=t.parcatsViewModel.dimensions.length,r=t.parcatsViewModel.dimensions[e-1].model.dimensionInd;return t.model.dimensionInd===r}function d(t,e){return t.model.rawColor>e.model.rawColor?1:t.model.rawColor"),C=n.mouse(f)[0];a.loneHover({trace:h,x:b-d.left+g.left,y:w-d.top+g.top,text:E,color:t.model.color,borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontSize:10,fontColor:T,idealAlign:C1&&h.displayInd===f.dimensions.length-1?(i=c.left,a="left"):(i=c.left+c.width,a="right");var g=u.model.count,m=u.model.categoryLabel,v=g/u.parcatsViewModel.model.count,y={countLabel:g,categoryLabel:m,probabilityLabel:v.toFixed(3)},x=[];-1!==u.parcatsViewModel.hoverinfoItems.indexOf("count")&&x.push(["Count:",y.countLabel].join(" ")),-1!==u.parcatsViewModel.hoverinfoItems.indexOf("probability")&&x.push(["P("+y.categoryLabel+"):",y.probabilityLabel].join(" "));var b=x.join("
");return{trace:p,x:o*(i-e.left),y:s*(d-e.top),text:b,color:"lightgray",borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontSize:12,fontColor:"black",idealAlign:a,hovertemplate:p.hovertemplate,hovertemplateLabels:y,eventData:[{data:p._input,fullData:p,count:g,category:m,probability:v}]}}function E(t){if(!t.parcatsViewModel.dragDimension&&-1===t.parcatsViewModel.hoverinfoItems.indexOf("skip")){if(n.mouse(this)[1]<-1)return;var e,r=t.parcatsViewModel.graphDiv,i=r._fullLayout,s=i._paperdiv.node().getBoundingClientRect(),l=t.parcatsViewModel.hoveron;if("color"===l?(!function(t){var e=n.select(t).datum(),r=k(e);_(r),r.each((function(){o.raiseToTop(this)})),n.select(t.parentNode).selectAll("rect.bandrect").filter((function(t){return t.color===e.color})).each((function(){o.raiseToTop(this),n.select(this).attr("stroke","black").attr("stroke-width",1.5)}))}(this),A(this,"plotly_hover",n.event)):(!function(t){n.select(t.parentNode).selectAll("rect.bandrect").each((function(t){var e=k(t);_(e),e.each((function(){o.raiseToTop(this)}))})),n.select(t.parentNode).select("rect.catrect").attr("stroke","black").attr("stroke-width",2.5)}(this),M(this,"plotly_hover",n.event)),-1===t.parcatsViewModel.hoverinfoItems.indexOf("none"))"category"===l?e=S(r,s,this):"color"===l?e=function(t,e,r){t._fullLayout._calcInverseTransform(t);var i,a,o=t._fullLayout._invScaleX,s=t._fullLayout._invScaleY,l=r.getBoundingClientRect(),u=n.select(r).datum(),f=u.categoryViewModel,h=f.parcatsViewModel,p=h.model.dimensions[f.model.dimensionInd],d=h.trace,g=l.y+l.height/2;h.dimensions.length>1&&p.displayInd===h.dimensions.length-1?(i=l.left,a="left"):(i=l.left+l.width,a="right");var m=f.model.categoryLabel,v=u.parcatsViewModel.model.count,y=0;u.categoryViewModel.bands.forEach((function(t){t.color===u.color&&(y+=t.count)}));var x=f.model.count,b=0;h.pathSelection.each((function(t){t.model.color===u.color&&(b+=t.model.count)}));var _=y/v,w=y/b,T=y/x,k={countLabel:v,categoryLabel:m,probabilityLabel:_.toFixed(3)},M=[];-1!==f.parcatsViewModel.hoverinfoItems.indexOf("count")&&M.push(["Count:",k.countLabel].join(" ")),-1!==f.parcatsViewModel.hoverinfoItems.indexOf("probability")&&(M.push("P(color \u2229 "+m+"): "+k.probabilityLabel),M.push("P("+m+" | color): "+w.toFixed(3)),M.push("P(color | "+m+"): "+T.toFixed(3)));var A=M.join("
"),S=c.mostReadable(u.color,["black","white"]);return{trace:d,x:o*(i-e.left),y:s*(g-e.top),text:A,color:u.color,borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontColor:S,fontSize:10,idealAlign:a,hovertemplate:d.hovertemplate,hovertemplateLabels:k,eventData:[{data:d._input,fullData:d,category:m,count:v,probability:_,categorycount:x,colorcount:b,bandcolorcount:y}]}}(r,s,this):"dimension"===l&&(e=function(t,e,r){var i=[];return n.select(r.parentNode.parentNode).selectAll("g.category").select("rect.catrect").each((function(){i.push(S(t,e,this))})),i}(r,s,this)),e&&a.loneHover(e,{container:i._hoverlayer.node(),outerContainer:i._paper.node(),gd:r})}}function C(t){var e=t.parcatsViewModel;if(!e.dragDimension&&(b(e.pathSelection),w(e.dimensionSelection.selectAll("g.category")),T(e.dimensionSelection.selectAll("g.category").selectAll("rect.bandrect")),a.loneUnhover(e.graphDiv._fullLayout._hoverlayer.node()),e.pathSelection.sort(d),-1===e.hoverinfoItems.indexOf("skip"))){"color"===t.parcatsViewModel.hoveron?A(this,"plotly_unhover",n.event):M(this,"plotly_unhover",n.event)}}function L(t){"fixed"!==t.parcatsViewModel.arrangement&&(t.dragDimensionDisplayInd=t.model.displayInd,t.initialDragDimensionDisplayInds=t.parcatsViewModel.model.dimensions.map((function(t){return t.displayInd})),t.dragHasMoved=!1,t.dragCategoryDisplayInd=null,n.select(this).selectAll("g.category").select("rect.catrect").each((function(e){var r=n.mouse(this)[0],i=n.mouse(this)[1];-2<=r&&r<=e.width+2&&-2<=i&&i<=e.height+2&&(t.dragCategoryDisplayInd=e.model.displayInd,t.initialDragCategoryDisplayInds=t.model.categories.map((function(t){return t.displayInd})),e.model.dragY=e.y,o.raiseToTop(this.parentNode),n.select(this.parentNode).selectAll("rect.bandrect").each((function(e){e.yf.y+f.height/2&&(o.model.displayInd=f.model.displayInd,f.model.displayInd=l),t.dragCategoryDisplayInd=o.model.displayInd}if(null===t.dragCategoryDisplayInd||"freeform"===t.parcatsViewModel.arrangement){a.model.dragX=n.event.x;var h=t.parcatsViewModel.dimensions[r],p=t.parcatsViewModel.dimensions[i];void 0!==h&&a.model.dragXp.x&&(a.model.displayInd=p.model.displayInd,p.model.displayInd=t.dragDimensionDisplayInd),t.dragDimensionDisplayInd=a.model.displayInd}N(t.parcatsViewModel),B(t.parcatsViewModel),D(t.parcatsViewModel),O(t.parcatsViewModel)}}function P(t){if("fixed"!==t.parcatsViewModel.arrangement&&null!==t.dragDimensionDisplayInd){n.select(this).selectAll("text").attr("font-weight","normal");var e={},r=z(t.parcatsViewModel),a=t.parcatsViewModel.model.dimensions.map((function(t){return t.displayInd})),o=t.initialDragDimensionDisplayInds.some((function(t,e){return t!==a[e]}));o&&a.forEach((function(r,n){var i=t.parcatsViewModel.model.dimensions[n].containerInd;e["dimensions["+i+"].displayindex"]=r}));var s=!1;if(null!==t.dragCategoryDisplayInd){var l=t.model.categories.map((function(t){return t.displayInd}));if(s=t.initialDragCategoryDisplayInds.some((function(t,e){return t!==l[e]}))){var c=t.model.categories.slice().sort((function(t,e){return t.displayInd-e.displayInd})),u=c.map((function(t){return t.categoryValue})),f=c.map((function(t){return t.categoryLabel}));e["dimensions["+t.model.containerInd+"].categoryarray"]=[u],e["dimensions["+t.model.containerInd+"].ticktext"]=[f],e["dimensions["+t.model.containerInd+"].categoryorder"]="array"}}if(-1===t.parcatsViewModel.hoverinfoItems.indexOf("skip")&&!t.dragHasMoved&&t.potentialClickBand&&("color"===t.parcatsViewModel.hoveron?A(t.potentialClickBand,"plotly_click",n.event.sourceEvent):M(t.potentialClickBand,"plotly_click",n.event.sourceEvent)),t.model.dragX=null,null!==t.dragCategoryDisplayInd)t.parcatsViewModel.dimensions[t.dragDimensionDisplayInd].categories[t.dragCategoryDisplayInd].model.dragY=null,t.dragCategoryDisplayInd=null;t.dragDimensionDisplayInd=null,t.parcatsViewModel.dragDimension=null,t.dragHasMoved=null,t.potentialClickBand=null,N(t.parcatsViewModel),B(t.parcatsViewModel),n.transition().duration(300).ease("cubic-in-out").each((function(){D(t.parcatsViewModel,!0),O(t.parcatsViewModel,!0)})).each("end",(function(){(o||s)&&i.restyle(t.parcatsViewModel.graphDiv,e,[r])}))}}function z(t){for(var e,r=t.graphDiv._fullData,n=0;n=0;s--)u+="C"+c[s]+","+(e[s+1]+i)+" "+l[s]+","+(e[s]+i)+" "+(t[s]+r[s])+","+(e[s]+i),u+="l-"+r[s]+",0 ";return u+="Z"}function B(t){var e=t.dimensions,r=t.model,n=e.map((function(t){return t.categories.map((function(t){return t.y}))})),i=t.model.dimensions.map((function(t){return t.categories.map((function(t){return t.displayInd}))})),a=t.model.dimensions.map((function(t){return t.displayInd})),o=t.dimensions.map((function(t){return t.model.dimensionInd})),s=e.map((function(t){return t.x})),l=e.map((function(t){return t.width})),c=[];for(var u in r.paths)r.paths.hasOwnProperty(u)&&c.push(r.paths[u]);function f(t){var e=t.categoryInds.map((function(t,e){return i[e][t]}));return o.map((function(t){return e[t]}))}c.sort((function(e,r){var n=f(e),i=f(r);return"backward"===t.sortpaths&&(n.reverse(),i.reverse()),n.push(e.valueInds[0]),i.push(r.valueInds[0]),t.bundlecolors&&(n.unshift(e.rawColor),i.unshift(r.rawColor)),ni?1:0}));for(var h=new Array(c.length),p=e[0].model.count,d=e[0].categories.map((function(t){return t.height})).reduce((function(t,e){return t+e})),g=0;g0?d*(v.count/p):0;for(var y,x=new Array(n.length),b=0;b1?(t.width-80-16)/(n-1):0)*i;var a,o,s,l,c,u=[],f=t.model.maxCats,h=e.categories.length,p=e.count,d=t.height-8*(f-1),g=8*(f-h)/2,m=e.categories.map((function(t){return{displayInd:t.displayInd,categoryInd:t.categoryInd}}));for(m.sort((function(t,e){return t.displayInd-e.displayInd})),c=0;c0?o.count/p*d:0,s={key:o.valueInds[0],model:o,width:16,height:a,y:null!==o.dragY?o.dragY:g,bands:[],parcatsViewModel:t},g=g+a+8,u.push(s);return{key:e.dimensionInd,x:null!==e.dragX?e.dragX:r,y:0,width:16,model:e,categories:u,parcatsViewModel:t,dragCategoryDisplayInd:null,dragDimensionDisplayInd:null,initialDragDimensionDisplayInds:null,initialDragCategoryDisplayInds:null,dragHasMoved:null,potentialClickBand:null}}e.exports=function(t,e,r,n){f(r,t,n,e)}},{"../../components/drawing":665,"../../components/fx":683,"../../lib":778,"../../lib/svg_text_utils":803,"../../plot_api/plot_api":814,d3:169,tinycolor2:576}],1148:[function(t,e,r){"use strict";var n=t("./parcats");e.exports=function(t,e,r,i){var a=t._fullLayout,o=a._paper,s=a._size;n(t,o,e,{width:s.w,height:s.h,margin:{t:s.t,r:s.r,b:s.b,l:s.l}},r,i)}},{"./parcats":1147}],1149:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/cartesian/layout_attributes"),a=t("../../plots/font_attributes"),o=t("../../plots/domain").attributes,s=t("../../lib/extend").extendFlat,l=t("../../plot_api/plot_template").templatedArray;e.exports={domain:o({name:"parcoords",trace:!0,editType:"plot"}),labelangle:{valType:"angle",dflt:0,editType:"plot"},labelside:{valType:"enumerated",values:["top","bottom"],dflt:"top",editType:"plot"},labelfont:a({editType:"plot"}),tickfont:a({editType:"plot"}),rangefont:a({editType:"plot"}),dimensions:l("dimension",{label:{valType:"string",editType:"plot"},tickvals:s({},i.tickvals,{editType:"plot"}),ticktext:s({},i.ticktext,{editType:"plot"}),tickformat:s({},i.tickformat,{editType:"plot"}),visible:{valType:"boolean",dflt:!0,editType:"plot"},range:{valType:"info_array",items:[{valType:"number",editType:"plot"},{valType:"number",editType:"plot"}],editType:"plot"},constraintrange:{valType:"info_array",freeLength:!0,dimensions:"1-2",items:[{valType:"number",editType:"plot"},{valType:"number",editType:"plot"}],editType:"plot"},multiselect:{valType:"boolean",dflt:!0,editType:"plot"},values:{valType:"data_array",editType:"calc"},editType:"calc"}),line:s({editType:"calc"},n("line",{colorscaleDflt:"Viridis",autoColorDflt:!1,editTypeOverride:"calc"}))}},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plot_api/plot_template":817,"../../plots/cartesian/layout_attributes":842,"../../plots/domain":855,"../../plots/font_attributes":856}],1150:[function(t,e,r){"use strict";var n=t("./constants"),i=t("d3"),a=t("../../lib/gup").keyFun,o=t("../../lib/gup").repeat,s=t("../../lib").sorterAsc,l=t("../../lib").strTranslate,c=n.bar.snapRatio;function u(t,e){return t*(1-c)+e*c}var f=n.bar.snapClose;function h(t,e){return t*(1-f)+e*f}function p(t,e,r,n){if(function(t,e){for(var r=0;r=e[r][0]&&t<=e[r][1])return!0;return!1}(r,n))return r;var i=t?-1:1,a=0,o=e.length-1;if(i<0){var s=a;a=o,o=s}for(var l=e[a],c=l,f=a;i*fe){h=r;break}}if(a=u,isNaN(a)&&(a=isNaN(f)||isNaN(h)?isNaN(f)?h:f:e-c[f][1]t[1]+r||e=.9*t[1]+.1*t[0]?"n":e<=.9*t[0]+.1*t[1]?"s":"ns"}(d,e);g&&(o.interval=l[a],o.intervalPix=d,o.region=g)}}if(t.ordinal&&!o.region){var m=t.unitTickvals,y=t.unitToPaddedPx.invert(e);for(r=0;r=x[0]&&y<=x[1]){o.clickableOrdinalRange=x;break}}}return o}function w(t,e){i.event.sourceEvent.stopPropagation();var r=e.height-i.mouse(t)[1]-2*n.verticalPadding,a=e.brush.svgBrush;a.wasDragged=!0,a._dragging=!0,a.grabbingBar?a.newExtent=[r-a.grabPoint,r+a.barLength-a.grabPoint].map(e.unitToPaddedPx.invert):a.newExtent=[a.startExtent,e.unitToPaddedPx.invert(r)].sort(s),e.brush.filterSpecified=!0,a.extent=a.stayingIntervals.concat([a.newExtent]),a.brushCallback(e),b(t.parentNode)}function T(t,e){var r=_(e,e.height-i.mouse(t)[1]-2*n.verticalPadding),a="crosshair";r.clickableOrdinalRange?a="pointer":r.region&&(a=r.region+"-resize"),i.select(document.body).style("cursor",a)}function k(t){t.on("mousemove",(function(t){i.event.preventDefault(),t.parent.inBrushDrag||T(this,t)})).on("mouseleave",(function(t){t.parent.inBrushDrag||y()})).call(i.behavior.drag().on("dragstart",(function(t){!function(t,e){i.event.sourceEvent.stopPropagation();var r=e.height-i.mouse(t)[1]-2*n.verticalPadding,a=e.unitToPaddedPx.invert(r),o=e.brush,s=_(e,r),l=s.interval,c=o.svgBrush;if(c.wasDragged=!1,c.grabbingBar="ns"===s.region,c.grabbingBar){var u=l.map(e.unitToPaddedPx);c.grabPoint=r-u[0]-n.verticalPadding,c.barLength=u[1]-u[0]}c.clickableOrdinalRange=s.clickableOrdinalRange,c.stayingIntervals=e.multiselect&&o.filterSpecified?o.filter.getConsolidated():[],l&&(c.stayingIntervals=c.stayingIntervals.filter((function(t){return t[0]!==l[0]&&t[1]!==l[1]}))),c.startExtent=s.region?l["s"===s.region?1:0]:a,e.parent.inBrushDrag=!0,c.brushStartCallback()}(this,t)})).on("drag",(function(t){w(this,t)})).on("dragend",(function(t){!function(t,e){var r=e.brush,n=r.filter,a=r.svgBrush;a._dragging||(T(t,e),w(t,e),e.brush.svgBrush.wasDragged=!1),a._dragging=!1,i.event.sourceEvent.stopPropagation();var o=a.grabbingBar;if(a.grabbingBar=!1,a.grabLocation=void 0,e.parent.inBrushDrag=!1,y(),!a.wasDragged)return a.wasDragged=void 0,a.clickableOrdinalRange?r.filterSpecified&&e.multiselect?a.extent.push(a.clickableOrdinalRange):(a.extent=[a.clickableOrdinalRange],r.filterSpecified=!0):o?(a.extent=a.stayingIntervals,0===a.extent.length&&A(r)):A(r),a.brushCallback(e),b(t.parentNode),void a.brushEndCallback(r.filterSpecified?n.getConsolidated():[]);var s=function(){n.set(n.getConsolidated())};if(e.ordinal){var l=e.unitTickvals;l[l.length-1]a.newExtent[0];a.extent=a.stayingIntervals.concat(c?[a.newExtent]:[]),a.extent.length||A(r),a.brushCallback(e),c?b(t.parentNode,s):(s(),b(t.parentNode))}else s();a.brushEndCallback(r.filterSpecified?n.getConsolidated():[])}(this,t)})))}function M(t,e){return t[0]-e[0]}function A(t){t.filterSpecified=!1,t.svgBrush.extent=[[-1/0,1/0]]}function S(t){for(var e,r=t.slice(),n=[],i=r.shift();i;){for(e=i.slice();(i=r.shift())&&i[0]<=e[1];)e[1]=Math.max(e[1],i[1]);n.push(e)}return 1===n.length&&n[0][0]>n[0][1]&&(n=[]),n}e.exports={makeBrush:function(t,e,r,n,i,a){var o,l=function(){var t,e,r=[];return{set:function(n){1===(r=n.map((function(t){return t.slice().sort(s)})).sort(M)).length&&r[0][0]===-1/0&&r[0][1]===1/0&&(r=[[0,-1]]),t=S(r),e=r.reduce((function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]}),[1/0,-1/0])},get:function(){return r.slice()},getConsolidated:function(){return t},getBounds:function(){return e}}}();return l.set(r),{filter:l,filterSpecified:e,svgBrush:{extent:[],brushStartCallback:n,brushCallback:(o=i,function(t){var e=t.brush,r=function(t){return t.svgBrush.extent.map((function(t){return t.slice()}))}(e).slice();e.filter.set(r),o()}),brushEndCallback:a}}},ensureAxisBrush:function(t){var e=t.selectAll("."+n.cn.axisBrush).data(o,a);e.enter().append("g").classed(n.cn.axisBrush,!0),function(t){var e=t.selectAll(".background").data(o);e.enter().append("rect").classed("background",!0).call(d).call(g).style("pointer-events","auto").attr("transform",l(0,n.verticalPadding)),e.call(k).attr("height",(function(t){return t.height-n.verticalPadding}));var r=t.selectAll(".highlight-shadow").data(o);r.enter().append("line").classed("highlight-shadow",!0).attr("x",-n.bar.width/2).attr("stroke-width",n.bar.width+n.bar.strokeWidth).attr("stroke",n.bar.strokeColor).attr("opacity",n.bar.strokeOpacity).attr("stroke-linecap","butt"),r.attr("y1",(function(t){return t.height})).call(x);var i=t.selectAll(".highlight").data(o);i.enter().append("line").classed("highlight",!0).attr("x",-n.bar.width/2).attr("stroke-width",n.bar.width-n.bar.strokeWidth).attr("stroke",n.bar.fillColor).attr("opacity",n.bar.fillOpacity).attr("stroke-linecap","butt"),i.attr("y1",(function(t){return t.height})).call(x)}(e)},cleanRanges:function(t,e){if(Array.isArray(t[0])?(t=t.map((function(t){return t.sort(s)})),t=e.multiselect?S(t.sort(M)):[t[0]]):t=[t.sort(s)],e.tickvals){var r=e.tickvals.slice().sort(s);if(!(t=t.map((function(t){var e=[p(0,r,t[0],[]),p(1,r,t[1],[])];if(e[1]>e[0])return e})).filter((function(t){return t}))).length)return}return t.length>1?t:t[0]}}},{"../../lib":778,"../../lib/gup":775,"./constants":1153,d3:169}],1151:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../plots/get_data").getModuleCalcData,a=t("./plot"),o=t("../../constants/xmlns_namespaces");r.name="parcoords",r.plot=function(t){var e=i(t.calcdata,"parcoords")[0];e.length&&a(t,e)},r.clean=function(t,e,r,n){var i=n._has&&n._has("parcoords"),a=e._has&&e._has("parcoords");i&&!a&&(n._paperdiv.selectAll(".parcoords").remove(),n._glimages.selectAll("*").remove())},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(".svg-container");r.filter((function(t,e){return e===r.size()-1})).selectAll(".gl-canvas-context, .gl-canvas-focus").each((function(){var t=this.toDataURL("image/png");e.append("svg:image").attr({xmlns:o.svg,"xlink:href":t,preserveAspectRatio:"none",x:0,y:0,width:this.width,height:this.height})})),window.setTimeout((function(){n.selectAll("#filterBarPattern").attr("id","filterBarPattern")}),60)}},{"../../constants/xmlns_namespaces":754,"../../plots/get_data":865,"./plot":1160,d3:169}],1152:[function(t,e,r){"use strict";var n=t("../../lib").isArrayOrTypedArray,i=t("../../components/colorscale"),a=t("../../lib/gup").wrap;e.exports=function(t,e){var r,o;return i.hasColorscale(e,"line")&&n(e.line.color)?(r=e.line.color,o=i.extractOpts(e.line).colorscale,i.calc(t,e,{vals:r,containerStr:"line",cLetter:"c"})):(r=function(t){for(var e=new Array(t),r=0;rf&&(n.log("parcoords traces support up to "+f+" dimensions at the moment"),d.splice(f));var g=s(t,e,{name:"dimensions",layout:l,handleItemDefaults:p}),m=function(t,e,r,o,s){var l=s("line.color",r);if(i(t,"line")&&n.isArrayOrTypedArray(l)){if(l.length)return s("line.colorscale"),a(t,e,o,s,{prefix:"line.",cLetter:"c"}),l.length;e.line.color=r}return 1/0}(t,e,r,l,u);o(e,l,u),Array.isArray(g)&&g.length||(e.visible=!1),h(e,g,"values",m);var v={family:l.font.family,size:Math.round(l.font.size/1.2),color:l.font.color};n.coerceFont(u,"labelfont",v),n.coerceFont(u,"tickfont",v),n.coerceFont(u,"rangefont",v),u("labelangle"),u("labelside")}},{"../../components/colorscale/defaults":653,"../../components/colorscale/helpers":654,"../../lib":778,"../../plots/array_container_defaults":823,"../../plots/cartesian/axes":828,"../../plots/domain":855,"./attributes":1149,"./axisbrush":1150,"./constants":1153,"./merge_length":1158}],1155:[function(t,e,r){"use strict";var n=t("../../lib").isTypedArray;r.convertTypedArray=function(t){return n(t)?Array.prototype.slice.call(t):t},r.isOrdinal=function(t){return!!t.tickvals},r.isVisible=function(t){return t.visible||!("visible"in t)}},{"../../lib":778}],1156:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),colorbar:{container:"line",min:"cmin",max:"cmax"},moduleType:"trace",name:"parcoords",basePlotModule:t("./base_plot"),categories:["gl","regl","noOpacity","noHover"],meta:{}}},{"./attributes":1149,"./base_plot":1151,"./calc":1152,"./defaults":1154,"./plot":1160}],1157:[function(t,e,r){"use strict";var n=t("glslify"),i=n(["precision highp float;\n#define GLSLIFY 1\n\nvarying vec4 fragColor;\n\nattribute vec4 p01_04, p05_08, p09_12, p13_16,\n p17_20, p21_24, p25_28, p29_32,\n p33_36, p37_40, p41_44, p45_48,\n p49_52, p53_56, p57_60, colors;\n\nuniform mat4 dim0A, dim1A, dim0B, dim1B, dim0C, dim1C, dim0D, dim1D,\n loA, hiA, loB, hiB, loC, hiC, loD, hiD;\n\nuniform vec2 resolution, viewBoxPos, viewBoxSize;\nuniform sampler2D mask, palette;\nuniform float maskHeight;\nuniform float drwLayer; // 0: context, 1: focus, 2: pick\nuniform vec4 contextColor;\n\nbool isPick = (drwLayer > 1.5);\nbool isContext = (drwLayer < 0.5);\n\nconst vec4 ZEROS = vec4(0.0, 0.0, 0.0, 0.0);\nconst vec4 UNITS = vec4(1.0, 1.0, 1.0, 1.0);\n\nfloat val(mat4 p, mat4 v) {\n return dot(matrixCompMult(p, v) * UNITS, UNITS);\n}\n\nfloat axisY(float ratio, mat4 A, mat4 B, mat4 C, mat4 D) {\n float y1 = val(A, dim0A) + val(B, dim0B) + val(C, dim0C) + val(D, dim0D);\n float y2 = val(A, dim1A) + val(B, dim1B) + val(C, dim1C) + val(D, dim1D);\n return y1 * (1.0 - ratio) + y2 * ratio;\n}\n\nint iMod(int a, int b) {\n return a - b * (a / b);\n}\n\nbool fOutside(float p, float lo, float hi) {\n return (lo < hi) && (lo > p || p > hi);\n}\n\nbool vOutside(vec4 p, vec4 lo, vec4 hi) {\n return (\n fOutside(p[0], lo[0], hi[0]) ||\n fOutside(p[1], lo[1], hi[1]) ||\n fOutside(p[2], lo[2], hi[2]) ||\n fOutside(p[3], lo[3], hi[3])\n );\n}\n\nbool mOutside(mat4 p, mat4 lo, mat4 hi) {\n return (\n vOutside(p[0], lo[0], hi[0]) ||\n vOutside(p[1], lo[1], hi[1]) ||\n vOutside(p[2], lo[2], hi[2]) ||\n vOutside(p[3], lo[3], hi[3])\n );\n}\n\nbool outsideBoundingBox(mat4 A, mat4 B, mat4 C, mat4 D) {\n return mOutside(A, loA, hiA) ||\n mOutside(B, loB, hiB) ||\n mOutside(C, loC, hiC) ||\n mOutside(D, loD, hiD);\n}\n\nbool outsideRasterMask(mat4 A, mat4 B, mat4 C, mat4 D) {\n mat4 pnts[4];\n pnts[0] = A;\n pnts[1] = B;\n pnts[2] = C;\n pnts[3] = D;\n\n for(int i = 0; i < 4; ++i) {\n for(int j = 0; j < 4; ++j) {\n for(int k = 0; k < 4; ++k) {\n if(0 == iMod(\n int(255.0 * texture2D(mask,\n vec2(\n (float(i * 2 + j / 2) + 0.5) / 8.0,\n (pnts[i][j][k] * (maskHeight - 1.0) + 1.0) / maskHeight\n ))[3]\n ) / int(pow(2.0, float(iMod(j * 4 + k, 8)))),\n 2\n )) return true;\n }\n }\n }\n return false;\n}\n\nvec4 position(bool isContext, float v, mat4 A, mat4 B, mat4 C, mat4 D) {\n float x = 0.5 * sign(v) + 0.5;\n float y = axisY(x, A, B, C, D);\n float z = 1.0 - abs(v);\n\n z += isContext ? 0.0 : 2.0 * float(\n outsideBoundingBox(A, B, C, D) ||\n outsideRasterMask(A, B, C, D)\n );\n\n return vec4(\n 2.0 * (vec2(x, y) * viewBoxSize + viewBoxPos) / resolution - 1.0,\n z,\n 1.0\n );\n}\n\nvoid main() {\n mat4 A = mat4(p01_04, p05_08, p09_12, p13_16);\n mat4 B = mat4(p17_20, p21_24, p25_28, p29_32);\n mat4 C = mat4(p33_36, p37_40, p41_44, p45_48);\n mat4 D = mat4(p49_52, p53_56, p57_60, ZEROS);\n\n float v = colors[3];\n\n gl_Position = position(isContext, v, A, B, C, D);\n\n fragColor =\n isContext ? vec4(contextColor) :\n isPick ? vec4(colors.rgb, 1.0) : texture2D(palette, vec2(abs(v), 0.5));\n}\n"]),a=n(["precision highp float;\n#define GLSLIFY 1\n\nvarying vec4 fragColor;\n\nvoid main() {\n gl_FragColor = fragColor;\n}\n"]),o=t("./constants").maxDimensionCount,s=t("../../lib"),l=new Uint8Array(4),c=new Uint8Array(4),u={shape:[256,1],format:"rgba",type:"uint8",mag:"nearest",min:"nearest"};function f(t,e,r,n,i){var a=t._gl;a.enable(a.SCISSOR_TEST),a.scissor(e,r,n,i),t.clear({color:[0,0,0,0],depth:1})}function h(t,e,r,n,i,a){var o=a.key;r.drawCompleted||(!function(t){t.read({x:0,y:0,width:1,height:1,data:l})}(t),r.drawCompleted=!0),function s(l){var c=Math.min(n,i-l*n);0===l&&(window.cancelAnimationFrame(r.currentRafs[o]),delete r.currentRafs[o],f(t,a.scissorX,a.scissorY,a.scissorWidth,a.viewBoxSize[1])),r.clearOnly||(a.count=2*c,a.offset=2*l*n,e(a),l*n+c>>8*e)%256/255}function g(t,e,r){for(var n=new Array(8*e),i=0,a=0;au&&(u=t[i].dim1.canvasX,o=i);0===s&&f(T,0,0,r.canvasWidth,r.canvasHeight);var p=function(t){var e,r,n,i=[[],[]];for(n=0;n<64;n++){var a=!t&&n<l.length?l[n].brush.filter.getBounds():[-1/0,1/0];i[0][n]=a[0],i[1][n]=a[1]}var o=new Array(16384);for(e=0;e<16384;e++)o[e]=255;if(!t)for(e=0;e<l.length;e++){var s=e%8,c=(e-s)/8,u=Math.pow(2,s),f=l[e].brush.filter.get();if(!(f.length<2)){var h=x(f[0])[1];for(r=1;r<f.length;r++){var p=x(f[r]);for(n=h+1;n<p[0];n++)o[8*n+c]&=~u;h=Math.max(h,p[1])}}}var d={shape:[8,2048],format:"alpha",type:"uint8",mag:"nearest",min:"nearest",data:o};return b?b(d):b=T.texture(d),{maskTexture:b,maskHeight:2048,loA:i[0].slice(0,16),loB:i[0].slice(16,32),loC:i[0].slice(32,48),loD:i[0].slice(48,64),hiA:i[1].slice(0,16),hiB:i[1].slice(16,32),hiC:i[1].slice(32,48),hiD:i[1].slice(48,64)}}(_);for(i=0;i<s;i++){var d=t[i],g=d.dim0.crossfilterDimensionIndex,v=d.dim1.crossfilterDimensionIndex,M=d.canvasX,A=d.canvasY,C=M+d.panelSizeX;if(e||!S[g]||S[g][0]!==M||S[g][1]!==C){S[g]=[M,C];var L=y(r,a,o,i,g,v,M,A,d.panelSizeX,d.panelSizeY,d.dim0.crossfilterDimensionIndex,_?0:w?2:1,p);k.clearOnly=n;var I=e?r.lines.blockLineCount:m;h(T,E,k,I,m,L)}}},readPixel:function(t,e){return T.read({x:t,y:e,width:1,height:1,data:c}),c},readPixels:function(t,e,r,n){var i=new Uint8Array(4*r*n);return T.read({x:t,y:e,width:r,height:n,data:i}),i},destroy:function(){for(var e in t.style["pointer-events"]="none",A.destroy(),b&&b.destroy(),M)M[e].destroy()},update:C}}},{"../../lib":778,"./constants":1153,glslify:439}],1158:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){var i,a;for(n||(n=1/0),i=0;i<e.length;i++)(a=e[i]).visible&&(n=Math.min(n,a[r].length));for(n===1/0&&(n=0),t._length=n,i=0;i<e.length;i++)(a=e[i]).visible&&(a._length=n);return n}},{}],1159:[function(t,e,r){"use strict";var n=t("d3"),i=t("color-rgba"),a=t("../../plots/cartesian/axes"),o=t("../../lib"),s=o.strRotate,l=o.strTranslate,c=t("../../lib/svg_text_utils"),u=t("../../components/drawing"),f=t("../../components/colorscale"),h=t("../../lib/gup"),p=h.keyFun,d=h.repeat,g=h.unwrap,m=t("./helpers"),v=t("./constants"),y=t("./axisbrush"),x=t("./lines");function b(t,e,r){return o.aggNums(t,null,e,r)}function _(t,e){return T(b(Math.min,t,e),b(Math.max,t,e))}function w(t){var e=t.range;return e?T(e[0],e[1]):_(t.values,t._length)}function T(t,e){return!isNaN(t)&&isFinite(t)||(t=0),!isNaN(e)&&isFinite(e)||(e=0),t===e&&(0===t?(t-=1,e+=1):(t*=.9,e*=1.1)),[t,e]}function k(t,e,r,i,a){var o,s,l=w(r);return i?n.scale.ordinal().domain(i.map((o=n.format(r.tickformat),s=a,s?function(t,e){var r=s[e];return null==r?o(t):r}:o))).range(i.map((function(r){var n=(r-l[0])/(l[1]-l[0]);return t-e+n*(2*e-t)}))):n.scale.linear().domain(l).range([t-e,e])}function M(t){if(t.tickvals){var e=w(t);return n.scale.ordinal().domain(t.tickvals).range(t.tickvals.map((function(t){return(t-e[0])/(e[1]-e[0])})))}}function A(t){var e=t.map((function(t){return t[0]})),r=t.map((function(t){var e=i(t[1]);return n.rgb("rgb("+e[0]+","+e[1]+","+e[2]+")")})),a="rgb".split("").map((function(t){return n.scale.linear().clamp(!0).domain(e).range(r.map((i=t,function(t){return t[i]})));var i}));return function(t){return a.map((function(e){return e(t)}))}}function S(t){return t.dimensions.some((function(t){return t.brush.filterSpecified}))}function E(t,e,r){var a=g(e),s=a.trace,l=m.convertTypedArray(a.lineColor),c=s.line,u={color:i(v.deselectedLineColor)},h=f.extractOpts(c),p=h.reversescale?f.flipScale(a.cscale):a.cscale,d=s.domain,y=s.dimensions,x=t.width,b=s.labelangle,_=s.labelside,T=s.labelfont,k=s.tickfont,M=s.rangefont,S=o.extendDeepNoArrays({},c,{color:l.map(n.scale.linear().domain(w({values:l,range:[h.min,h.max],_length:s._length}))),blockLineCount:v.blockLineCount,canvasOverdrag:v.overdrag*v.canvasPixelRatio}),E=Math.floor(x*(d.x[1]-d.x[0])),C=Math.floor(t.height*(d.y[1]-d.y[0])),L=t.margin||{l:80,r:80,t:100,b:80},I=E,P=C;return{key:r,colCount:y.filter(m.isVisible).length,dimensions:y,tickDistance:v.tickDistance,unitToColor:A(p),lines:S,deselectedLines:u,labelAngle:b,labelSide:_,labelFont:T,tickFont:k,rangeFont:M,layoutWidth:x,layoutHeight:t.height,domain:d,translateX:d.x[0]*x,translateY:t.height-d.y[1]*t.height,pad:L,canvasWidth:I*v.canvasPixelRatio+2*S.canvasOverdrag,canvasHeight:P*v.canvasPixelRatio,width:I,height:P,canvasPixelRatio:v.canvasPixelRatio}}function C(t,e,r){var i=r.width,a=r.height,s=r.dimensions,l=r.canvasPixelRatio,c=function(t){return i*t/Math.max(1,r.colCount-1)},u=v.verticalPadding/a,f=function(t,e){return n.scale.linear().range([e,t-e])}(a,v.verticalPadding),h={key:r.key,xScale:c,model:r,inBrushDrag:!1},p={};return h.dimensions=s.filter(m.isVisible).map((function(i,s){var d=function(t,e){return n.scale.linear().domain(w(t)).range([e,1-e])}(i,u),g=p[i.label];p[i.label]=(g||0)+1;var x=i.label+(g?"__"+g:""),b=i.constraintrange,_=b&&b.length;_&&!Array.isArray(b[0])&&(b=[b]);var T=_?b.map((function(t){return t.map(d)})):[[-1/0,1/0]],A=i.values;A.length>i._length&&(A=A.slice(0,i._length));var E,C=i.tickvals;function L(t,e){return{val:t,text:E[e]}}function I(t,e){return t.val-e.val}if(Array.isArray(C)&&C.length){E=i.ticktext,Array.isArray(E)&&E.length?E.length>C.length?E=E.slice(0,C.length):C.length>E.length&&(C=C.slice(0,E.length)):E=C.map(n.format(i.tickformat));for(var P=1;P=r||l>=a)return;var c=t.lineLayer.readPixel(s,a-1-l),u=0!==c[3],f=u?c[2]+256*(c[1]+256*c[0]):null,h={x:s,y:l,clientX:e.clientX,clientY:e.clientY,dataIndex:t.model.key,curveNumber:f};f!==R&&(u?i.hover(h):i.unhover&&i.unhover(h),R=f)}})),D.style("opacity",(function(t){return t.pick?0:1})),h.style("background","rgba(255, 255, 255, 0)");var F=h.selectAll("."+v.cn.parcoords).data(A,p);F.exit().remove(),F.enter().append("g").classed(v.cn.parcoords,!0).style("shape-rendering","crispEdges").style("pointer-events","none"),F.attr("transform",(function(t){return l(t.model.translateX,t.model.translateY)}));var B=F.selectAll("."+v.cn.parcoordsControlView).data(d,p);B.enter().append("g").classed(v.cn.parcoordsControlView,!0),B.attr("transform",(function(t){return l(t.model.pad.l,t.model.pad.t)}));var N=B.selectAll("."+v.cn.yAxis).data((function(t){return t.dimensions}),p);N.enter().append("g").classed(v.cn.yAxis,!0),B.each((function(t){P(N,t)})),D.each((function(t){if(t.viewModel){!t.lineLayer||i?t.lineLayer=x(this,t):t.lineLayer.update(t),(t.key||0===t.key)&&(t.viewModel[t.key]=t.lineLayer);var e=!t.context||i;t.lineLayer.render(t.viewModel.panels,e)}})),N.attr("transform",(function(t){return l(t.xScale(t.xIndex),0)})),N.call(n.behavior.drag().origin((function(t){return t})).on("drag",(function(t){var e=t.parent;M.linePickActive(!1),t.x=Math.max(-v.overdrag,Math.min(t.model.width+v.overdrag,n.event.x)),t.canvasX=t.x*t.model.canvasPixelRatio,N.sort((function(t,e){return t.x-e.x})).each((function(e,r){e.xIndex=r,e.x=t===e?e.x:e.xScale(e.xIndex),e.canvasX=e.x*e.model.canvasPixelRatio})),P(N,e),N.filter((function(e){return 0!==Math.abs(t.xIndex-e.xIndex)})).attr("transform",(function(t){return l(t.xScale(t.xIndex),0)})),n.select(this).attr("transform",l(t.x,0)),N.each((function(r,n,i){i===t.parent.key&&(e.dimensions[n]=r)})),e.contextLayer&&e.contextLayer.render(e.panels,!1,!S(e)),e.focusLayer.render&&e.focusLayer.render(e.panels)})).on("dragend",(function(t){var e=t.parent;t.x=t.xScale(t.xIndex),t.canvasX=t.x*t.model.canvasPixelRatio,P(N,e),n.select(this).attr("transform",(function(t){return l(t.x,0)})),e.contextLayer&&e.contextLayer.render(e.panels,!1,!S(e)),e.focusLayer&&e.focusLayer.render(e.panels),e.pickLayer&&e.pickLayer.render(e.panels,!0),M.linePickActive(!0),i&&i.axesMoved&&i.axesMoved(e.key,e.dimensions.map((function(t){return t.crossfilterDimensionIndex})))}))),N.exit().remove();var j=N.selectAll("."+v.cn.axisOverlays).data(d,p);j.enter().append("g").classed(v.cn.axisOverlays,!0),j.selectAll("."+v.cn.axis).remove();var U=j.selectAll("."+v.cn.axis).data(d,p);U.enter().append("g").classed(v.cn.axis,!0),U.each((function(t){var e=t.model.height/t.model.tickDistance,r=t.domainScale,i=r.domain();n.select(this).call(n.svg.axis().orient("left").tickSize(4).outerTickSize(2).ticks(e,t.tickFormat).tickValues(t.ordinal?i:null).tickFormat((function(e){return m.isOrdinal(t)?e:z(t.model.dimensions[t.visibleIndex],e)})).scale(r)),u.font(U.selectAll("text"),t.model.tickFont)})),U.selectAll(".domain, .tick>line").attr("fill","none").attr("stroke","black").attr("stroke-opacity",.25).attr("stroke-width","1px"),U.selectAll("text").style("text-shadow","1px 1px 1px #fff, -1px -1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff").style("cursor","default");var V=j.selectAll("."+v.cn.axisHeading).data(d,p);V.enter().append("g").classed(v.cn.axisHeading,!0);var q=V.selectAll("."+v.cn.axisTitle).data(d,p);q.enter().append("text").classed(v.cn.axisTitle,!0).attr("text-anchor","middle").style("cursor","ew-resize").style("pointer-events","auto"),q.text((function(t){return t.label})).each((function(e){var r=n.select(this);u.font(r,e.model.labelFont),c.convertToTspans(r,t)})).attr("transform",(function(t){var e=I(t.model.labelAngle,t.model.labelSide),r=v.axisTitleOffset;return(e.dir>0?"":l(0,2*r+t.model.height))+s(e.degrees)+l(-r*e.dx,-r*e.dy)})).attr("text-anchor",(function(t){var e=I(t.model.labelAngle,t.model.labelSide);return 2*Math.abs(e.dx)>Math.abs(e.dy)?e.dir*e.dx<0?"start":"end":"middle"}));var H=j.selectAll("."+v.cn.axisExtent).data(d,p);H.enter().append("g").classed(v.cn.axisExtent,!0);var G=H.selectAll("."+v.cn.axisExtentTop).data(d,p);G.enter().append("g").classed(v.cn.axisExtentTop,!0),G.attr("transform",l(0,-v.axisExtentOffset));var Y=G.selectAll("."+v.cn.axisExtentTopText).data(d,p);Y.enter().append("text").classed(v.cn.axisExtentTopText,!0).call(L),Y.text((function(t){return O(t,!0)})).each((function(t){u.font(n.select(this),t.model.rangeFont)}));var W=H.selectAll("."+v.cn.axisExtentBottom).data(d,p);W.enter().append("g").classed(v.cn.axisExtentBottom,!0),W.attr("transform",(function(t){return l(0,t.model.height+v.axisExtentOffset)}));var X=W.selectAll("."+v.cn.axisExtentBottomText).data(d,p);X.enter().append("text").classed(v.cn.axisExtentBottomText,!0).attr("dy","0.75em").call(L),X.text((function(t){return O(t,!1)})).each((function(t){u.font(n.select(this),t.model.rangeFont)})),y.ensureAxisBrush(j)}},{"../../components/colorscale":655,"../../components/drawing":665,"../../lib":778,"../../lib/gup":775,"../../lib/svg_text_utils":803,"../../plots/cartesian/axes":828,"./axisbrush":1150,"./constants":1153,"./helpers":1155,"./lines":1157,"color-rgba":127,d3:169}],1160:[function(t,e,r){"use strict";var n=t("./parcoords"),i=t("../../lib/prepare_regl"),a=t("./helpers").isVisible;function o(t,e,r){var n=e.indexOf(r),i=t.indexOf(n);return-1===i&&(i+=e.length),i}e.exports=function(t,e){var r=t._fullLayout;if(i(t)){var s={},l={},c={},u={},f=r._size;e.forEach((function(e,r){var n=e[0].trace;c[r]=n.index;var i=u[r]=n._fullInput.index;s[r]=t.data[i].dimensions,l[r]=t.data[i].dimensions.slice()}));n(t,e,{width:f.w,height:f.h,margin:{t:f.t,r:f.r,b:f.b,l:f.l}},{filterChanged:function(e,n,i){var a=l[e][n],o=i.map((function(t){return t.slice()})),s="dimensions["+n+"].constraintrange",f=r._tracePreGUI[t._fullData[c[e]]._fullInput.uid];if(void 0===f[s]){var h=a.constraintrange;f[s]=h||null}var p=t._fullData[c[e]].dimensions[n];o.length?(1===o.length&&(o=o[0]),a.constraintrange=o,p.constraintrange=o.slice(),o=[o]):(delete a.constraintrange,delete p.constraintrange,o=null);var d={};d[s]=o,t.emit("plotly_restyle",[d,[u[e]]])},hover:function(e){t.emit("plotly_hover",e)},unhover:function(e){t.emit("plotly_unhover",e)},axesMoved:function(e,r){var n=function(t,e){return function(r,n){return o(t,e,r)-o(t,e,n)}}(r,l[e].filter(a));s[e].sort(n),l[e].filter((function(t){return!a(t)})).sort((function(t){return l[e].indexOf(t)})).forEach((function(t){s[e].splice(s[e].indexOf(t),1),s[e].splice(l[e].indexOf(t),0,t)})),t.emit("plotly_restyle",[{dimensions:[s[e]]},[u[e]]])}})}}},{"../../lib/prepare_regl":791,"./helpers":1155,"./parcoords":1159}],1161:[function(t,e,r){"use strict";var n=t("../../plots/attributes"),i=t("../../plots/domain").attributes,a=t("../../plots/font_attributes"),o=t("../../components/color/attributes"),s=t("../../plots/template_attributes").hovertemplateAttrs,l=t("../../plots/template_attributes").texttemplateAttrs,c=t("../../lib/extend").extendFlat,u=a({editType:"plot",arrayOk:!0,colorEditType:"plot"});e.exports={labels:{valType:"data_array",editType:"calc"},label0:{valType:"number",dflt:0,editType:"calc"},dlabel:{valType:"number",dflt:1,editType:"calc"},values:{valType:"data_array",editType:"calc"},marker:{colors:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:o.defaultLine,arrayOk:!0,editType:"style"},width:{valType:"number",min:0,dflt:0,arrayOk:!0,editType:"style"},editType:"calc"},editType:"calc"},text:{valType:"data_array",editType:"plot"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"style"},scalegroup:{valType:"string",dflt:"",editType:"calc"},textinfo:{valType:"flaglist",flags:["label","text","value","percent"],extras:["none"],editType:"calc"},hoverinfo:c({},n.hoverinfo,{flags:["label","text","value","percent","name"]}),hovertemplate:s({},{keys:["label","color","value","percent","text"]}),texttemplate:l({editType:"plot"},{keys:["label","color","value","percent","text"]}),textposition:{valType:"enumerated",values:["inside","outside","auto","none"],dflt:"auto",arrayOk:!0,editType:"plot"},textfont:c({},u,{}),insidetextorientation:{valType:"enumerated",values:["horizontal","radial","tangential","auto"],dflt:"auto",editType:"plot"},insidetextfont:c({},u,{}),outsidetextfont:c({},u,{}),automargin:{valType:"boolean",dflt:!1,editType:"plot"},title:{text:{valType:"string",dflt:"",editType:"plot"},font:c({},u,{}),position:{valType:"enumerated",values:["top left","top center","top right","middle center","bottom left","bottom center","bottom right"],editType:"plot"},editType:"plot"},domain:i({name:"pie",trace:!0,editType:"calc"}),hole:{valType:"number",min:0,max:1,dflt:0,editType:"calc"},sort:{valType:"boolean",dflt:!0,editType:"calc"},direction:{valType:"enumerated",values:["clockwise","counterclockwise"],dflt:"counterclockwise",editType:"calc"},rotation:{valType:"number",min:-360,max:360,dflt:0,editType:"calc"},pull:{valType:"number",min:0,max:1,dflt:0,arrayOk:!0,editType:"calc"},_deprecated:{title:{valType:"string",dflt:"",editType:"calc"},titlefont:c({},u,{}),titleposition:{valType:"enumerated",values:["top left","top center","top right","middle center","bottom left","bottom center","bottom right"],editType:"calc"}}}},{"../../components/color/attributes":642,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/domain":855,"../../plots/font_attributes":856,"../../plots/template_attributes":906}],1162:[function(t,e,r){"use strict";var n=t("../../plots/plots");r.name="pie",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{"../../plots/plots":891}],1163:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("tinycolor2"),a=t("../../components/color"),o={};function s(t){return function(e,r){return!!e&&(!!(e=i(e)).isValid()&&(e=a.addOpacity(e,e.getAlpha()),t[r]||(t[r]=e),e))}}function l(t,e){var r,n=JSON.stringify(t),a=e[n];if(!a){for(a=t.slice(),r=0;r0){s=!0;break}}s||(o=0)}return{hasLabels:r,hasValues:a,len:o}}e.exports={handleLabelsAndValues:l,supplyDefaults:function(t,e,r,n){function c(r,n){return i.coerce(t,e,a,r,n)}var u=l(c("labels"),c("values")),f=u.len;if(e._hasLabels=u.hasLabels,e._hasValues=u.hasValues,!e._hasLabels&&e._hasValues&&(c("label0"),c("dlabel")),f){e._length=f,c("marker.line.width")&&c("marker.line.color"),c("marker.colors"),c("scalegroup");var h,p=c("text"),d=c("texttemplate");if(d||(h=c("textinfo",Array.isArray(p)?"text+percent":"percent")),c("hovertext"),c("hovertemplate"),d||h&&"none"!==h){var g=c("textposition");s(t,e,n,c,g,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),(Array.isArray(g)||"auto"===g||"outside"===g)&&c("automargin"),("inside"===g||"auto"===g||Array.isArray(g))&&c("insidetextorientation")}o(e,n,c);var m=c("hole");if(c("title.text")){var v=c("title.position",m?"middle center":"top center");m||"middle center"!==v||(e.title.position="top center"),i.coerceFont(c,"title.font",n.font)}c("sort"),c("direction"),c("rotation"),c("pull")}else e.visible=!1}}},{"../../lib":778,"../../plots/domain":855,"../bar/defaults":925,"./attributes":1161,"fast-isnumeric":241}],1165:[function(t,e,r){"use strict";var n=t("../../components/fx/helpers").appendArrayMultiPointValues;e.exports=function(t,e){var r={curveNumber:e.index,pointNumbers:t.pts,data:e._input,fullData:e,label:t.label,color:t.color,value:t.v,percent:t.percent,text:t.text,v:t.v};return 1===t.pts.length&&(r.pointNumber=r.i=t.pts[0]),n(r,e,t.pts),"funnelarea"===e.type&&(delete r.v,delete r.i),r}},{"../../components/fx/helpers":679}],1166:[function(t,e,r){"use strict";var n=t("../../lib");function i(t){return-1!==t.indexOf("e")?t.replace(/[.]?0+e/,"e"):-1!==t.indexOf(".")?t.replace(/[.]?0+$/,""):t}r.formatPiePercent=function(t,e){var r=i((100*t).toPrecision(3));return n.numSeparate(r,e)+"%"},r.formatPieValue=function(t,e){var r=i(t.toPrecision(10));return n.numSeparate(r,e)},r.getFirstFilled=function(t,e){if(Array.isArray(t))for(var r=0;r"),name:u.hovertemplate||-1!==f.indexOf("name")?u.name:void 0,idealAlign:t.pxmid[0]<0?"left":"right",color:m.castOption(b.bgcolor,t.pts)||t.color,borderColor:m.castOption(b.bordercolor,t.pts),fontFamily:m.castOption(_.family,t.pts),fontSize:m.castOption(_.size,t.pts),fontColor:m.castOption(_.color,t.pts),nameLength:m.castOption(b.namelength,t.pts),textAlign:m.castOption(b.align,t.pts),hovertemplate:m.castOption(u.hovertemplate,t.pts),hovertemplateLabels:t,eventData:[v(t,u)]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:e}),o._hasHoverLabel=!0}o._hasHoverEvent=!0,e.emit("plotly_hover",{points:[v(t,u)],event:n.event})}})),t.on("mouseout",(function(t){var r=e._fullLayout,i=e._fullData[o.index],s=n.select(this).datum();o._hasHoverEvent&&(t.originalEvent=n.event,e.emit("plotly_unhover",{points:[v(s,i)],event:n.event}),o._hasHoverEvent=!1),o._hasHoverLabel&&(a.loneUnhover(r._hoverlayer.node()),o._hasHoverLabel=!1)})),t.on("click",(function(t){var r=e._fullLayout,i=e._fullData[o.index];e._dragging||!1===r.hovermode||(e._hoverdata=[v(t,i)],a.click(e,n.event))}))}function b(t,e,r){var n=m.castOption(t.insidetextfont.color,e.pts);!n&&t._input.textfont&&(n=m.castOption(t._input.textfont.color,e.pts));var i=m.castOption(t.insidetextfont.family,e.pts)||m.castOption(t.textfont.family,e.pts)||r.family,a=m.castOption(t.insidetextfont.size,e.pts)||m.castOption(t.textfont.size,e.pts)||r.size;return{color:n||o.contrast(e.color),family:i,size:a}}function _(t,e){for(var r,n,i=0;ie&&e>n||r=-4;m-=2)v(Math.PI*m,"tan");for(m=4;m>=-4;m-=2)v(Math.PI*(m+1),"tan")}if(f||p){for(m=4;m>=-4;m-=2)v(Math.PI*(m+1.5),"rad");for(m=4;m>=-4;m-=2)v(Math.PI*(m+.5),"rad")}}if(s||d||f){var y=Math.sqrt(t.width*t.width+t.height*t.height);if((a={scale:i*n*2/y,rCenter:1-i,rotate:0}).textPosAngle=(e.startangle+e.stopangle)/2,a.scale>=1)return a;g.push(a)}(d||p)&&((a=T(t,n,o,l,c)).textPosAngle=(e.startangle+e.stopangle)/2,g.push(a)),(d||h)&&((a=k(t,n,o,l,c)).textPosAngle=(e.startangle+e.stopangle)/2,g.push(a));for(var x=0,b=0,_=0;_=1)break}return g[x]}function T(t,e,r,n,i){e=Math.max(0,e-2*g);var a=t.width/t.height,o=S(a,n,e,r);return{scale:2*o/t.height,rCenter:M(a,o/e),rotate:A(i)}}function k(t,e,r,n,i){e=Math.max(0,e-2*g);var a=t.height/t.width,o=S(a,n,e,r);return{scale:2*o/t.width,rCenter:M(a,o/e),rotate:A(i+Math.PI/2)}}function M(t,e){return Math.cos(e)-t*e}function A(t){return(180/Math.PI*t+720)%180-90}function S(t,e,r,n){var i=t+1/(2*Math.tan(e));return r*Math.min(1/(Math.sqrt(i*i+.5)+i),n/(Math.sqrt(t*t+n/2)+t))}function E(t,e){return t.v!==e.vTotal||e.trace.hole?Math.min(1/(1+1/Math.sin(t.halfangle)),t.ring/2):1}function C(t,e){var r=e.pxmid[0],n=e.pxmid[1],i=t.width/2,a=t.height/2;return r<0&&(i*=-1),n<0&&(a*=-1),{scale:1,rCenter:1,rotate:0,x:i+Math.abs(a)*(i>0?1:-1)/2,y:a/(1+r*r/(n*n)),outside:!0}}function L(t,e){var r,n,i,a=t.trace,o={x:t.cx,y:t.cy},s={tx:0,ty:0};s.ty+=a.title.font.size,i=P(a),-1!==a.title.position.indexOf("top")?(o.y-=(1+i)*t.r,s.ty-=t.titleBox.height):-1!==a.title.position.indexOf("bottom")&&(o.y+=(1+i)*t.r);var l,c,u=(l=t.r,c=t.trace.aspectratio,l/(void 0===c?1:c)),f=e.w*(a.domain.x[1]-a.domain.x[0])/2;return-1!==a.title.position.indexOf("left")?(f+=u,o.x-=(1+i)*u,s.tx+=t.titleBox.width/2):-1!==a.title.position.indexOf("center")?f*=2:-1!==a.title.position.indexOf("right")&&(f+=u,o.x+=(1+i)*u,s.tx-=t.titleBox.width/2),r=f/t.titleBox.width,n=I(t,e)/t.titleBox.height,{x:o.x,y:o.y,scale:Math.min(r,n),tx:s.tx,ty:s.ty}}function I(t,e){var r=t.trace,n=e.h*(r.domain.y[1]-r.domain.y[0]);return Math.min(t.titleBox.height,n/2)}function P(t){var e,r=t.pull;if(!r)return 0;if(Array.isArray(r))for(r=0,e=0;er&&(r=t.pull[e]);return r}function z(t,e){for(var r=[],n=0;n1?(c=r.r,u=c/i.aspectratio):(u=r.r,c=u*i.aspectratio),c*=(1+i.baseratio)/2,l=c*u}o=Math.min(o,l/r.vTotal)}for(n=0;n")}if(a){var x=l.castOption(i,e.i,"texttemplate");if(x){var b=function(t){return{label:t.label,value:t.v,valueLabel:m.formatPieValue(t.v,n.separators),percent:t.v/r.vTotal,percentLabel:m.formatPiePercent(t.v/r.vTotal,n.separators),color:t.color,text:t.text,customdata:l.castOption(i,t.i,"customdata")}}(e),_=m.getFirstFilled(i.text,e.pts);(y(_)||""===_)&&(b.text=_),e.text=l.texttemplateString(x,b,t._fullLayout._d3locale,b,i._meta||{})}else e.text=""}}function R(t,e){var r=t.rotate*Math.PI/180,n=Math.cos(r),i=Math.sin(r),a=(e.left+e.right)/2,o=(e.top+e.bottom)/2;t.textX=a*n-o*i,t.textY=a*i+o*n,t.noCenter=!0}e.exports={plot:function(t,e){var r=t._fullLayout,a=r._size;d("pie",r),_(e,t),z(e,a);var h=l.makeTraceGroups(r._pielayer,e,"trace").each((function(e){var h=n.select(this),d=e[0],g=d.trace;!function(t){var e,r,n,i=t[0],a=i.r,o=i.trace,s=m.getRotationAngle(o.rotation),l=2*Math.PI/i.vTotal,c="px0",u="px1";if("counterclockwise"===o.direction){for(e=0;ei.vTotal/2?1:0,r.halfangle=Math.PI*Math.min(r.v/i.vTotal,.5),r.ring=1-o.hole,r.rInscribed=E(r,i))}(e),h.attr("stroke-linejoin","round"),h.each((function(){var v=n.select(this).selectAll("g.slice").data(e);v.enter().append("g").classed("slice",!0),v.exit().remove();var y=[[[],[]],[[],[]]],_=!1;v.each((function(i,a){if(i.hidden)n.select(this).selectAll("path,g").remove();else{i.pointNumber=i.i,i.curveNumber=g.index,y[i.pxmid[1]<0?0:1][i.pxmid[0]<0?0:1].push(i);var o=d.cx,c=d.cy,u=n.select(this),h=u.selectAll("path.surface").data([i]);if(h.enter().append("path").classed("surface",!0).style({"pointer-events":"all"}),u.call(x,t,e),g.pull){var v=+m.castOption(g.pull,i.pts)||0;v>0&&(o+=v*i.pxmid[0],c+=v*i.pxmid[1])}i.cxFinal=o,i.cyFinal=c;var T=g.hole;if(i.v===d.vTotal){var k="M"+(o+i.px0[0])+","+(c+i.px0[1])+L(i.px0,i.pxmid,!0,1)+L(i.pxmid,i.px0,!0,1)+"Z";T?h.attr("d","M"+(o+T*i.px0[0])+","+(c+T*i.px0[1])+L(i.px0,i.pxmid,!1,T)+L(i.pxmid,i.px0,!1,T)+"Z"+k):h.attr("d",k)}else{var M=L(i.px0,i.px1,!0,1);if(T){var A=1-T;h.attr("d","M"+(o+T*i.px1[0])+","+(c+T*i.px1[1])+L(i.px1,i.px0,!1,T)+"l"+A*i.px0[0]+","+A*i.px0[1]+M+"Z")}else h.attr("d","M"+o+","+c+"l"+i.px0[0]+","+i.px0[1]+M+"Z")}D(t,i,d);var S=m.castOption(g.textposition,i.pts),E=u.selectAll("g.slicetext").data(i.text&&"none"!==S?[0]:[]);E.enter().append("g").classed("slicetext",!0),E.exit().remove(),E.each((function(){var u=l.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),h=l.ensureUniformFontSize(t,"outside"===S?function(t,e,r){var n=m.castOption(t.outsidetextfont.color,e.pts)||m.castOption(t.textfont.color,e.pts)||r.color,i=m.castOption(t.outsidetextfont.family,e.pts)||m.castOption(t.textfont.family,e.pts)||r.family,a=m.castOption(t.outsidetextfont.size,e.pts)||m.castOption(t.textfont.size,e.pts)||r.size;return{color:n,family:i,size:a}}(g,i,r.font):b(g,i,r.font));u.text(i.text).attr({class:"slicetext",transform:"","text-anchor":"middle"}).call(s.font,h).call(f.convertToTspans,t);var v,y=s.bBox(u.node());if("outside"===S)v=C(y,i);else if(v=w(y,i,d),"auto"===S&&v.scale<1){var x=l.ensureUniformFontSize(t,g.outsidetextfont);u.call(s.font,x),v=C(y=s.bBox(u.node()),i)}var T=v.textPosAngle,k=void 0===T?i.pxmid:O(d.r,T);if(v.targetX=o+k[0]*v.rCenter+(v.x||0),v.targetY=c+k[1]*v.rCenter+(v.y||0),R(v,y),v.outside){var M=v.targetY;i.yLabelMin=M-y.height/2,i.yLabelMid=M,i.yLabelMax=M+y.height/2,i.labelExtraX=0,i.labelExtraY=0,_=!0}v.fontSize=h.size,p(g.type,v,r),e[a].transform=v,u.attr("transform",l.getTextTransform(v))}))}function L(t,e,r,n){var a=n*(e[0]-t[0]),o=n*(e[1]-t[1]);return"a"+n*d.r+","+n*d.r+" 0 "+i.largeArc+(r?" 1 ":" 0 ")+a+","+o}}));var T=n.select(this).selectAll("g.titletext").data(g.title.text?[0]:[]);if(T.enter().append("g").classed("titletext",!0),T.exit().remove(),T.each((function(){var e,r=l.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),i=g.title.text;g._meta&&(i=l.templateString(i,g._meta)),r.text(i).attr({class:"titletext",transform:"","text-anchor":"middle"}).call(s.font,g.title.font).call(f.convertToTspans,t),e="middle center"===g.title.position?function(t){var e=Math.sqrt(t.titleBox.width*t.titleBox.width+t.titleBox.height*t.titleBox.height);return{x:t.cx,y:t.cy,scale:t.trace.hole*t.r*2/e,tx:0,ty:-t.titleBox.height/2+t.trace.title.font.size}}(d):L(d,a),r.attr("transform",u(e.x,e.y)+c(Math.min(1,e.scale))+u(e.tx,e.ty))})),_&&function(t,e){var r,n,i,a,o,s,l,c,u,f,h,p,d;function g(t,e){return t.pxmid[1]-e.pxmid[1]}function v(t,e){return e.pxmid[1]-t.pxmid[1]}function y(t,r){r||(r={});var i,c,u,h,p=r.labelExtraY+(n?r.yLabelMax:r.yLabelMin),d=n?t.yLabelMin:t.yLabelMax,g=n?t.yLabelMax:t.yLabelMin,v=t.cyFinal+o(t.px0[1],t.px1[1]),y=p-d;if(y*l>0&&(t.labelExtraY=y),Array.isArray(e.pull))for(c=0;c=(m.castOption(e.pull,u.pts)||0)||((t.pxmid[1]-u.pxmid[1])*l>0?(y=u.cyFinal+o(u.px0[1],u.px1[1])-d-t.labelExtraY)*l>0&&(t.labelExtraY+=y):(g+t.labelExtraY-v)*l>0&&(i=3*s*Math.abs(c-f.indexOf(t)),(h=u.cxFinal+a(u.px0[0],u.px1[0])+i-(t.cxFinal+t.pxmid[0])-t.labelExtraX)*s>0&&(t.labelExtraX+=h)))}for(n=0;n<2;n++)for(i=n?g:v,o=n?Math.max:Math.min,l=n?1:-1,r=0;r<2;r++){for(a=r?Math.max:Math.min,s=r?1:-1,(c=t[n][r]).sort(i),u=t[1-n][r],f=u.concat(c),p=[],h=0;hMath.abs(f)?s+="l"+f*t.pxmid[0]/t.pxmid[1]+","+f+"H"+(a+t.labelExtraX+c):s+="l"+t.labelExtraX+","+u+"v"+(f-u)+"h"+c}else s+="V"+(t.yLabelMid+t.labelExtraY)+"h"+c;l.ensureSingle(r,"path","textline").call(o.stroke,e.outsidetextfont.color).attr({"stroke-width":Math.min(2,e.outsidetextfont.size/8),d:s,fill:"none"})}else r.select("path.textline").remove()}))}(v,g),_&&g.automargin){var k=s.bBox(h.node()),M=g.domain,A=a.w*(M.x[1]-M.x[0]),S=a.h*(M.y[1]-M.y[0]),E=(.5*A-d.r)/a.w,I=(.5*S-d.r)/a.h;i.autoMargin(t,"pie."+g.uid+".automargin",{xl:M.x[0]-E,xr:M.x[1]+E,yb:M.y[0]-I,yt:M.y[1]+I,l:Math.max(d.cx-d.r-k.left,0),r:Math.max(k.right-(d.cx+d.r),0),b:Math.max(k.bottom-(d.cy+d.r),0),t:Math.max(d.cy-d.r-k.top,0),pad:5})}}))}));setTimeout((function(){h.selectAll("tspan").each((function(){var t=n.select(this);t.attr("dy")&&t.attr("dy",t.attr("dy"))}))}),0)},formatSliceLabel:D,transformInsideText:w,determineInsideTextFont:b,positionTitleOutside:L,prerenderTitles:_,layoutAreas:z,attachFxHandlers:x,computeTransform:R}},{"../../components/color":643,"../../components/drawing":665,"../../components/fx":683,"../../lib":778,"../../lib/svg_text_utils":803,"../../plots/plots":891,"../bar/constants":923,"../bar/uniform_text":937,"./event_data":1165,"./helpers":1166,d3:169}],1171:[function(t,e,r){"use strict";var n=t("d3"),i=t("./style_one"),a=t("../bar/uniform_text").resizeText;e.exports=function(t){var e=t._fullLayout._pielayer.selectAll(".trace");a(t,e,"pie"),e.each((function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll("path.surface").each((function(t){n.select(this).call(i,t,e)}))}))}},{"../bar/uniform_text":937,"./style_one":1172,d3:169}],1172:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("./helpers").castOption;e.exports=function(t,e,r){var a=r.marker.line,o=i(a.color,e.pts)||n.defaultLine,s=i(a.width,e.pts)||0;t.style("stroke-width",s).call(n.fill,e.color).call(n.stroke,o)}},{"../../components/color":643,"./helpers":1166}],1173:[function(t,e,r){"use strict";var n=t("../scatter/attributes");e.exports={x:n.x,y:n.y,xy:{valType:"data_array",editType:"calc"},indices:{valType:"data_array",editType:"calc"},xbounds:{valType:"data_array",editType:"calc"},ybounds:{valType:"data_array",editType:"calc"},text:n.text,marker:{color:{valType:"color",arrayOk:!1,editType:"calc"},opacity:{valType:"number",min:0,max:1,dflt:1,arrayOk:!1,editType:"calc"},blend:{valType:"boolean",dflt:null,editType:"calc"},sizemin:{valType:"number",min:.1,max:2,dflt:.5,editType:"calc"},sizemax:{valType:"number",min:.1,dflt:20,editType:"calc"},border:{color:{valType:"color",arrayOk:!1,editType:"calc"},arearatio:{valType:"number",min:0,max:1,dflt:0,editType:"calc"},editType:"calc"},editType:"calc"},transforms:void 0}},{"../scatter/attributes":1187}],1174:[function(t,e,r){"use strict";var n=t("gl-pointcloud2d"),i=t("../../lib/str2rgbarray"),a=t("../../plots/cartesian/autorange").findExtremes,o=t("../scatter/get_trace_color");function s(t,e){this.scene=t,this.uid=e,this.type="pointcloud",this.pickXData=[],this.pickYData=[],this.xData=[],this.yData=[],this.textLabels=[],this.color="rgb(0, 0, 0)",this.name="",this.hoverinfo="all",this.idToIndex=new Int32Array(0),this.bounds=[0,0,0,0],this.pointcloudOptions={positions:new Float32Array(0),idToIndex:this.idToIndex,sizemin:.5,sizemax:12,color:[0,0,0,1],areaRatio:1,borderColor:[0,0,0,1]},this.pointcloud=n(t.glplot,this.pointcloudOptions),this.pointcloud._trace=this}var l=s.prototype;l.handlePick=function(t){var e=this.idToIndex[t.pointId];return{trace:this,dataCoord:t.dataCoord,traceCoord:this.pickXYData?[this.pickXYData[2*e],this.pickXYData[2*e+1]]:[this.pickXData[e],this.pickYData[e]],textLabel:Array.isArray(this.textLabels)?this.textLabels[e]:this.textLabels,color:this.color,name:this.name,pointIndex:e,hoverinfo:this.hoverinfo}},l.update=function(t){this.index=t.index,this.textLabels=t.text,this.name=t.name,this.hoverinfo=t.hoverinfo,this.bounds=[1/0,1/0,-1/0,-1/0],this.updateFast(t),this.color=o(t,{})},l.updateFast=function(t){var e,r,n,o,s,l,c=this.xData=this.pickXData=t.x,u=this.yData=this.pickYData=t.y,f=this.pickXYData=t.xy,h=t.xbounds&&t.ybounds,p=t.indices,d=this.bounds;if(f){if(n=f,e=f.length>>>1,h)d[0]=t.xbounds[0],d[2]=t.xbounds[1],d[1]=t.ybounds[0],d[3]=t.ybounds[1];else for(l=0;ld[2]&&(d[2]=o),sd[3]&&(d[3]=s);if(p)r=p;else for(r=new Int32Array(e),l=0;ld[2]&&(d[2]=o),sd[3]&&(d[3]=s);this.idToIndex=r,this.pointcloudOptions.idToIndex=r,this.pointcloudOptions.positions=n;var g=i(t.marker.color),m=i(t.marker.border.color),v=t.opacity*t.marker.opacity;g[3]*=v,this.pointcloudOptions.color=g;var y=t.marker.blend;if(null===y){y=c.length<100||u.length<100}this.pointcloudOptions.blend=y,m[3]*=v,this.pointcloudOptions.borderColor=m;var x=t.marker.sizemin,b=Math.max(t.marker.sizemax,t.marker.sizemin);this.pointcloudOptions.sizeMin=x,this.pointcloudOptions.sizeMax=b,this.pointcloudOptions.areaRatio=t.marker.border.arearatio,this.pointcloud.update(this.pointcloudOptions);var _=this.scene.xaxis,w=this.scene.yaxis,T=b/2||.5;t._extremes[_._id]=a(_,[d[0],d[2]],{ppad:T}),t._extremes[w._id]=a(w,[d[1],d[3]],{ppad:T})},l.dispose=function(){this.pointcloud.dispose()},e.exports=function(t,e){var r=new s(t,e.uid);return r.update(e),r}},{"../../lib/str2rgbarray":802,"../../plots/cartesian/autorange":827,"../scatter/get_trace_color":1197,"gl-pointcloud2d":324}],1175:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes");e.exports=function(t,e,r){function a(r,a){return n.coerce(t,e,i,r,a)}a("x"),a("y"),a("xbounds"),a("ybounds"),t.xy&&t.xy instanceof Float32Array&&(e.xy=t.xy),t.indices&&t.indices instanceof Int32Array&&(e.indices=t.indices),a("text"),a("marker.color",r),a("marker.opacity"),a("marker.blend"),a("marker.sizemin"),a("marker.sizemax"),a("marker.border.color",r),a("marker.border.arearatio"),e._length=null}},{"../../lib":778,"./attributes":1173}],1176:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("../scatter3d/calc"),plot:t("./convert"),moduleType:"trace",name:"pointcloud",basePlotModule:t("../../plots/gl2d"),categories:["gl","gl2d","showLegend"],meta:{}}},{"../../plots/gl2d":868,"../scatter3d/calc":1216,"./attributes":1173,"./convert":1174,"./defaults":1175}],1177:[function(t,e,r){"use strict";var n=t("../../plots/font_attributes"),i=t("../../plots/attributes"),a=t("../../components/color/attributes"),o=t("../../components/fx/attributes"),s=t("../../plots/domain").attributes,l=t("../../plots/template_attributes").hovertemplateAttrs,c=t("../../components/colorscale/attributes"),u=t("../../plot_api/plot_template").templatedArray,f=t("../../lib/extend").extendFlat,h=t("../../plot_api/edit_types").overrideAll;t("../../constants/docs").FORMAT_LINK;(e.exports=h({hoverinfo:f({},i.hoverinfo,{flags:[],arrayOk:!1}),hoverlabel:o.hoverlabel,domain:s({name:"sankey",trace:!0}),orientation:{valType:"enumerated",values:["v","h"],dflt:"h"},valueformat:{valType:"string",dflt:".3s"},valuesuffix:{valType:"string",dflt:""},arrangement:{valType:"enumerated",values:["snap","perpendicular","freeform","fixed"],dflt:"snap"},textfont:n({}),customdata:void 0,node:{label:{valType:"data_array",dflt:[]},groups:{valType:"info_array",impliedEdits:{x:[],y:[]},dimensions:2,freeLength:!0,dflt:[],items:{valType:"number",editType:"calc"}},x:{valType:"data_array",dflt:[]},y:{valType:"data_array",dflt:[]},color:{valType:"color",arrayOk:!0},customdata:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:a.defaultLine,arrayOk:!0},width:{valType:"number",min:0,dflt:.5,arrayOk:!0}},pad:{valType:"number",arrayOk:!1,min:0,dflt:20},thickness:{valType:"number",arrayOk:!1,min:1,dflt:20},hoverinfo:{valType:"enumerated",values:["all","none","skip"],dflt:"all"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:["value","label"]})},link:{label:{valType:"data_array",dflt:[]},color:{valType:"color",arrayOk:!0},customdata:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:a.defaultLine,arrayOk:!0},width:{valType:"number",min:0,dflt:0,arrayOk:!0}},source:{valType:"data_array",dflt:[]},target:{valType:"data_array",dflt:[]},value:{valType:"data_array",dflt:[]},hoverinfo:{valType:"enumerated",values:["all","none","skip"],dflt:"all"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:["value","label"]}),colorscales:u("concentrationscales",{editType:"calc",label:{valType:"string",editType:"calc",dflt:""},cmax:{valType:"number",editType:"calc",dflt:1},cmin:{valType:"number",editType:"calc",dflt:0},colorscale:f(c().colorscale,{dflt:[[0,"white"],[1,"black"]]})})}},"calc","nested")).transforms=void 0},{"../../components/color/attributes":642,"../../components/colorscale/attributes":650,"../../components/fx/attributes":674,"../../constants/docs":748,"../../lib/extend":768,"../../plot_api/edit_types":810,"../../plot_api/plot_template":817,"../../plots/attributes":824,"../../plots/domain":855,"../../plots/font_attributes":856,"../../plots/template_attributes":906}],1178:[function(t,e,r){"use strict";var n=t("../../plot_api/edit_types").overrideAll,i=t("../../plots/get_data").getModuleCalcData,a=t("./plot"),o=t("../../components/fx/layout_attributes"),s=t("../../lib/setcursor"),l=t("../../components/dragelement"),c=t("../../plots/cartesian/select").prepSelect,u=t("../../lib"),f=t("../../registry");function h(t,e){var r=t._fullData[e],n=t._fullLayout,i=n.dragmode,a="pan"===n.dragmode?"move":"crosshair",o=r._bgRect;if("pan"!==i&&"zoom"!==i){s(o,a);var h={_id:"x",c2p:u.identity,_offset:r._sankey.translateX,_length:r._sankey.width},p={_id:"y",c2p:u.identity,_offset:r._sankey.translateY,_length:r._sankey.height},d={gd:t,element:o.node(),plotinfo:{id:e,xaxis:h,yaxis:p,fillRangeItems:u.noop},subplot:e,xaxes:[h],yaxes:[p],doneFnCompleted:function(r){var n,i=t._fullData[e],a=i.node.groups.slice(),o=[];function s(t){for(var e=i._sankey.graph.nodes,r=0;ry&&(y=a.source[e]),a.target[e]>y&&(y=a.target[e]);var x,b=y+1;t.node._count=b;var _=t.node.groups,w={};for(e=0;e<_.length;e++){var T=_[e];for(x=0;x0&&s(E,b)&&s(C,b)&&(!w.hasOwnProperty(E)||!w.hasOwnProperty(C)||w[E]!==w[C])){w.hasOwnProperty(C)&&(C=w[C]),w.hasOwnProperty(E)&&(E=w[E]),C=+C,h[E=+E]=h[C]=!0;var L="";a.label&&a.label[e]&&(L=a.label[e]);var I=null;L&&p.hasOwnProperty(L)&&(I=p[L]),c.push({pointNumber:e,label:L,color:u?a.color[e]:a.color,customdata:f?a.customdata[e]:a.customdata,concentrationscale:I,source:E,target:C,value:+S}),A.source.push(E),A.target.push(C)}}var P=b+_.length,z=o(r.color),O=o(r.customdata),D=[];for(e=0;eb-1,childrenNodes:[],pointNumber:e,label:R,color:z?r.color[e]:r.color,customdata:O?r.customdata[e]:r.customdata})}var F=!1;return function(t,e,r){for(var a=i.init2dArray(t,0),o=0;o1}))}(P,A.source,A.target)&&(F=!0),{circular:F,links:c,nodes:D,groups:_,groupLookup:w}}e.exports=function(t,e){var r=c(e);return a({circular:r.circular,_nodes:r.nodes,_links:r.links,_groups:r.groups,_groupLookup:r.groupLookup})}},{"../../components/colorscale":655,"../../lib":778,"../../lib/gup":775,"strongly-connected-components":569}],1180:[function(t,e,r){"use strict";e.exports={nodeTextOffsetHorizontal:4,nodeTextOffsetVertical:3,nodePadAcross:10,sankeyIterations:50,forceIterations:5,forceTicksPerFrame:10,duration:500,ease:"linear",cn:{sankey:"sankey",sankeyLinks:"sankey-links",sankeyLink:"sankey-link",sankeyNodeSet:"sankey-node-set",sankeyNode:"sankey-node",nodeRect:"node-rect",nodeCapture:"node-capture",nodeCentered:"node-entered",nodeLabelGuide:"node-label-guide",nodeLabel:"node-label",nodeLabelTextPath:"node-label-text-path"}}},{}],1181:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../components/color"),o=t("tinycolor2"),s=t("../../plots/domain").defaults,l=t("../../components/fx/hoverlabel_defaults"),c=t("../../plot_api/plot_template"),u=t("../../plots/array_container_defaults");function f(t,e){function r(r,a){return n.coerce(t,e,i.link.colorscales,r,a)}r("label"),r("cmin"),r("cmax"),r("colorscale")}e.exports=function(t,e,r,h){function p(r,a){return n.coerce(t,e,i,r,a)}var d=n.extendDeep(h.hoverlabel,t.hoverlabel),g=t.node,m=c.newContainer(e,"node");function v(t,e){return n.coerce(g,m,i.node,t,e)}v("label"),v("groups"),v("x"),v("y"),v("pad"),v("thickness"),v("line.color"),v("line.width"),v("hoverinfo",t.hoverinfo),l(g,m,v,d),v("hovertemplate");var y=h.colorway;v("color",m.label.map((function(t,e){return a.addOpacity(function(t){return y[t%y.length]}(e),.8)}))),v("customdata");var x=t.link||{},b=c.newContainer(e,"link");function _(t,e){return n.coerce(x,b,i.link,t,e)}_("label"),_("source"),_("target"),_("value"),_("line.color"),_("line.width"),_("hoverinfo",t.hoverinfo),l(x,b,_,d),_("hovertemplate");var w,T=o(h.paper_bgcolor).getLuminance()<.333?"rgba(255, 255, 255, 0.6)":"rgba(0, 0, 0, 0.2)";_("color",n.repeat(T,b.value.length)),_("customdata"),u(x,b,{name:"colorscales",handleItemDefaults:f}),s(e,h,p),p("orientation"),p("valueformat"),p("valuesuffix"),m.x.length&&m.y.length&&(w="freeform"),p("arrangement",w),n.coerceFont(p,"textfont",n.extendFlat({},h.font)),e._length=null}},{"../../components/color":643,"../../components/fx/hoverlabel_defaults":681,"../../lib":778,"../../plot_api/plot_template":817,"../../plots/array_container_defaults":823,"../../plots/domain":855,"./attributes":1177,tinycolor2:576}],1182:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),moduleType:"trace",name:"sankey",basePlotModule:t("./base_plot"),selectPoints:t("./select.js"),categories:["noOpacity"],meta:{}}},{"./attributes":1177,"./base_plot":1178,"./calc":1179,"./defaults":1181,"./plot":1183,"./select.js":1185}],1183:[function(t,e,r){"use strict";var n=t("d3"),i=t("./render"),a=t("../../components/fx"),o=t("../../components/color"),s=t("../../lib"),l=t("./constants").cn,c=s._;function u(t){return""!==t}function f(t,e){return t.filter((function(t){return t.key===e.traceId}))}function h(t,e){n.select(t).select("path").style("fill-opacity",e),n.select(t).select("rect").style("fill-opacity",e)}function p(t){n.select(t).select("text.name").style("fill","black")}function d(t){return function(e){return-1!==t.node.sourceLinks.indexOf(e.link)||-1!==t.node.targetLinks.indexOf(e.link)}}function g(t){return function(e){return-1!==e.node.sourceLinks.indexOf(t.link)||-1!==e.node.targetLinks.indexOf(t.link)}}function m(t,e,r){e&&r&&f(r,e).selectAll("."+l.sankeyLink).filter(d(e)).call(y.bind(0,e,r,!1))}function v(t,e,r){e&&r&&f(r,e).selectAll("."+l.sankeyLink).filter(d(e)).call(x.bind(0,e,r,!1))}function y(t,e,r,n){var i=n.datum().link.label;n.style("fill-opacity",(function(t){if(!t.link.concentrationscale)return.4})),i&&f(e,t).selectAll("."+l.sankeyLink).filter((function(t){return t.link.label===i})).style("fill-opacity",(function(t){if(!t.link.concentrationscale)return.4})),r&&f(e,t).selectAll("."+l.sankeyNode).filter(g(t)).call(m)}function x(t,e,r,n){var i=n.datum().link.label;n.style("fill-opacity",(function(t){return t.tinyColorAlpha})),i&&f(e,t).selectAll("."+l.sankeyLink).filter((function(t){return t.link.label===i})).style("fill-opacity",(function(t){return t.tinyColorAlpha})),r&&f(e,t).selectAll(l.sankeyNode).filter(g(t)).call(v)}function b(t,e){var r=t.hoverlabel||{},n=s.nestedProperty(r,e).get();return!Array.isArray(n)&&n}e.exports=function(t,e){for(var r=t._fullLayout,s=r._paper,f=r._size,d=0;d"),color:b(s,"bgcolor")||o.addOpacity(d.color,1),borderColor:b(s,"bordercolor"),fontFamily:b(s,"font.family"),fontSize:b(s,"font.size"),fontColor:b(s,"font.color"),nameLength:b(s,"namelength"),textAlign:b(s,"align"),idealAlign:n.event.x"),color:b(o,"bgcolor")||i.tinyColorHue,borderColor:b(o,"bordercolor"),fontFamily:b(o,"font.family"),fontSize:b(o,"font.size"),fontColor:b(o,"font.color"),nameLength:b(o,"namelength"),textAlign:b(o,"align"),idealAlign:"left",hovertemplate:o.hovertemplate,hovertemplateLabels:v,eventData:[i.node]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:t});h(_,.85),p(_)}}},unhover:function(e,i,o){!1!==t._fullLayout.hovermode&&(n.select(e).call(v,i,o),"skip"!==i.node.trace.node.hoverinfo&&(i.node.fullData=i.node.trace,t.emit("plotly_unhover",{event:n.event,points:[i.node]})),a.loneUnhover(r._hoverlayer.node()))},select:function(e,r,i){var o=r.node;o.originalEvent=n.event,t._hoverdata=[o],n.select(e).call(v,r,i),a.click(t,{target:!0})}}})}},{"../../components/color":643,"../../components/fx":683,"../../lib":778,"./constants":1180,"./render":1184,d3:169}],1184:[function(t,e,r){"use strict";var n=t("./constants"),i=t("d3"),a=t("tinycolor2"),o=t("../../components/color"),s=t("../../components/drawing"),l=t("@plotly/d3-sankey"),c=t("@plotly/d3-sankey-circular"),u=t("d3-force"),f=t("../../lib"),h=f.strTranslate,p=t("../../lib/gup"),d=p.keyFun,g=p.repeat,m=p.unwrap,v=t("d3-interpolate").interpolateNumber,y=t("../../registry");function x(t,e,r){var i,o=m(e),s=o.trace,u=s.domain,h="h"===s.orientation,p=s.node.pad,d=s.node.thickness,g=t.width*(u.x[1]-u.x[0]),v=t.height*(u.y[1]-u.y[0]),y=o._nodes,x=o._links,b=o.circular;(i=b?c.sankeyCircular().circularLinkGap(0):l.sankey()).iterations(n.sankeyIterations).size(h?[g,v]:[v,g]).nodeWidth(d).nodePadding(p).nodeId((function(t){return t.pointNumber})).nodes(y).links(x);var _,w,T,k=i();for(var M in i.nodePadding()=i||(r=i-e.y0)>1e-6&&(e.y0+=r,e.y1+=r),i=e.y1+p}))}(function(t){var e,r,n=t.map((function(t,e){return{x0:t.x0,index:e}})).sort((function(t,e){return t.x0-e.x0})),i=[],a=-1,o=-1/0;for(_=0;_o+d&&(a+=1,e=s.x0),o=s.x0,i[a]||(i[a]=[]),i[a].push(s),r=e-s.x0,s.x0+=r,s.x1+=r}return i}(y=k.nodes));i.update(k)}return{circular:b,key:r,trace:s,guid:f.randstr(),horizontal:h,width:g,height:v,nodePad:s.node.pad,nodeLineColor:s.node.line.color,nodeLineWidth:s.node.line.width,linkLineColor:s.link.line.color,linkLineWidth:s.link.line.width,valueFormat:s.valueformat,valueSuffix:s.valuesuffix,textFont:s.textfont,translateX:u.x[0]*t.width+t.margin.l,translateY:t.height-u.y[1]*t.height+t.margin.t,dragParallel:h?v:g,dragPerpendicular:h?g:v,arrangement:s.arrangement,sankey:i,graph:k,forceLayouts:{},interactionState:{dragInProgress:!1,hovered:!1}}}function b(t,e,r){var n=a(e.color),i=e.source.label+"|"+e.target.label+"__"+r;return e.trace=t.trace,e.curveNumber=t.trace.index,{circular:t.circular,key:i,traceId:t.key,pointNumber:e.pointNumber,link:e,tinyColorHue:o.tinyRGB(n),tinyColorAlpha:n.getAlpha(),linkPath:_,linkLineColor:t.linkLineColor,linkLineWidth:t.linkLineWidth,valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,parent:t,interactionState:t.interactionState,flow:e.flow}}function _(){return function(t){if(t.link.circular)return e=t.link,r=e.width/2,n=e.circularPathData,"top"===e.circularLinkType?"M "+n.targetX+" "+(n.targetY+r)+" L"+n.rightInnerExtent+" "+(n.targetY+r)+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightSmallArcRadius+r)+" 0 0 1 "+(n.rightFullExtent-r)+" "+(n.targetY-n.rightSmallArcRadius)+"L"+(n.rightFullExtent-r)+" "+n.verticalRightInnerExtent+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightLargeArcRadius+r)+" 0 0 1 "+n.rightInnerExtent+" "+(n.verticalFullExtent-r)+"L"+n.leftInnerExtent+" "+(n.verticalFullExtent-r)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftLargeArcRadius+r)+" 0 0 1 "+(n.leftFullExtent+r)+" "+n.verticalLeftInnerExtent+"L"+(n.leftFullExtent+r)+" "+(n.sourceY-n.leftSmallArcRadius)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftSmallArcRadius+r)+" 0 0 1 "+n.leftInnerExtent+" "+(n.sourceY+r)+"L"+n.sourceX+" "+(n.sourceY+r)+"L"+n.sourceX+" "+(n.sourceY-r)+"L"+n.leftInnerExtent+" "+(n.sourceY-r)+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftSmallArcRadius-r)+" 0 0 0 "+(n.leftFullExtent-r)+" "+(n.sourceY-n.leftSmallArcRadius)+"L"+(n.leftFullExtent-r)+" "+n.verticalLeftInnerExtent+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftLargeArcRadius-r)+" 0 0 0 "+n.leftInnerExtent+" "+(n.verticalFullExtent+r)+"L"+n.rightInnerExtent+" "+(n.verticalFullExtent+r)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightLargeArcRadius-r)+" 0 0 0 "+(n.rightFullExtent+r)+" "+n.verticalRightInnerExtent+"L"+(n.rightFullExtent+r)+" "+(n.targetY-n.rightSmallArcRadius)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightSmallArcRadius-r)+" 0 0 0 "+n.rightInnerExtent+" "+(n.targetY-r)+"L"+n.targetX+" "+(n.targetY-r)+"Z":"M "+n.targetX+" "+(n.targetY-r)+" L"+n.rightInnerExtent+" "+(n.targetY-r)+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightSmallArcRadius+r)+" 0 0 0 "+(n.rightFullExtent-r)+" "+(n.targetY+n.rightSmallArcRadius)+"L"+(n.rightFullExtent-r)+" "+n.verticalRightInnerExtent+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightLargeArcRadius+r)+" 0 0 0 "+n.rightInnerExtent+" "+(n.verticalFullExtent+r)+"L"+n.leftInnerExtent+" "+(n.verticalFullExtent+r)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftLargeArcRadius+r)+" 0 0 0 "+(n.leftFullExtent+r)+" "+n.verticalLeftInnerExtent+"L"+(n.leftFullExtent+r)+" "+(n.sourceY+n.leftSmallArcRadius)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftSmallArcRadius+r)+" 0 0 0 "+n.leftInnerExtent+" "+(n.sourceY-r)+"L"+n.sourceX+" "+(n.sourceY-r)+"L"+n.sourceX+" "+(n.sourceY+r)+"L"+n.leftInnerExtent+" "+(n.sourceY+r)+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftSmallArcRadius-r)+" 0 0 1 "+(n.leftFullExtent-r)+" "+(n.sourceY+n.leftSmallArcRadius)+"L"+(n.leftFullExtent-r)+" "+n.verticalLeftInnerExtent+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftLargeArcRadius-r)+" 0 0 1 "+n.leftInnerExtent+" "+(n.verticalFullExtent-r)+"L"+n.rightInnerExtent+" "+(n.verticalFullExtent-r)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightLargeArcRadius-r)+" 0 0 1 "+(n.rightFullExtent+r)+" "+n.verticalRightInnerExtent+"L"+(n.rightFullExtent+r)+" "+(n.targetY+n.rightSmallArcRadius)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightSmallArcRadius-r)+" 0 0 1 "+n.rightInnerExtent+" "+(n.targetY+r)+"L"+n.targetX+" "+(n.targetY+r)+"Z";var e,r,n,i=t.link.source.x1,a=t.link.target.x0,o=v(i,a),s=o(.5),l=o(.5),c=t.link.y0-t.link.width/2,u=t.link.y0+t.link.width/2,f=t.link.y1-t.link.width/2,h=t.link.y1+t.link.width/2;return"M"+i+","+c+"C"+s+","+c+" "+l+","+f+" "+a+","+f+"L"+a+","+h+"C"+l+","+h+" "+s+","+u+" "+i+","+u+"Z"}}function w(t,e){var r=a(e.color),i=n.nodePadAcross,s=t.nodePad/2;e.dx=e.x1-e.x0,e.dy=e.y1-e.y0;var l=e.dx,c=Math.max(.5,e.dy),u="node_"+e.pointNumber;return e.group&&(u=f.randstr()),e.trace=t.trace,e.curveNumber=t.trace.index,{index:e.pointNumber,key:u,partOfGroup:e.partOfGroup||!1,group:e.group,traceId:t.key,trace:t.trace,node:e,nodePad:t.nodePad,nodeLineColor:t.nodeLineColor,nodeLineWidth:t.nodeLineWidth,textFont:t.textFont,size:t.horizontal?t.height:t.width,visibleWidth:Math.ceil(l),visibleHeight:c,zoneX:-i,zoneY:-s,zoneWidth:l+2*i,zoneHeight:c+2*s,labelY:t.horizontal?e.dy/2+1:e.dx/2+1,left:1===e.originalLayer,sizeAcross:t.width,forceLayouts:t.forceLayouts,horizontal:t.horizontal,darkBackground:r.getBrightness()<=128,tinyColorHue:o.tinyRGB(r),tinyColorAlpha:r.getAlpha(),valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,graph:t.graph,arrangement:t.arrangement,uniqueNodeLabelPathId:[t.guid,t.key,u].join("_"),interactionState:t.interactionState,figure:t}}function T(t){t.attr("transform",(function(t){return h(t.node.x0.toFixed(3),t.node.y0.toFixed(3))}))}function k(t){t.call(T)}function M(t,e){t.call(k),e.attr("d",_())}function A(t){t.attr("width",(function(t){return t.node.x1-t.node.x0})).attr("height",(function(t){return t.visibleHeight}))}function S(t){return t.link.width>1||t.linkLineWidth>0}function E(t){return h(t.translateX,t.translateY)+(t.horizontal?"matrix(1 0 0 1 0 0)":"matrix(0 1 1 0 0 0)")}function C(t){return h(t.horizontal?0:t.labelY,t.horizontal?t.labelY:0)}function L(t){return i.svg.line()([[t.horizontal?t.left?-t.sizeAcross:t.visibleWidth+n.nodeTextOffsetHorizontal:n.nodeTextOffsetHorizontal,0],[t.horizontal?t.left?-n.nodeTextOffsetHorizontal:t.sizeAcross:t.visibleHeight-n.nodeTextOffsetHorizontal,0]])}function I(t){return t.horizontal?"matrix(1 0 0 1 0 0)":"matrix(0 1 1 0 0 0)"}function P(t){return t.horizontal?"scale(1 1)":"scale(-1 1)"}function z(t){return t.darkBackground&&!t.horizontal?"rgb(255,255,255)":"rgb(0,0,0)"}function O(t){return t.horizontal&&t.left?"100%":"0%"}function D(t,e,r){t.on(".basic",null).on("mouseover.basic",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.hover(this,t,e),t.interactionState.hovered=[this,t])})).on("mousemove.basic",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.follow(this,t),t.interactionState.hovered=[this,t])})).on("mouseout.basic",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.unhover(this,t,e),t.interactionState.hovered=!1)})).on("click.basic",(function(t){t.interactionState.hovered&&(r.unhover(this,t,e),t.interactionState.hovered=!1),t.interactionState.dragInProgress||t.partOfGroup||r.select(this,t,e)}))}function R(t,e,r,a){var o=i.behavior.drag().origin((function(t){return{x:t.node.x0+t.visibleWidth/2,y:t.node.y0+t.visibleHeight/2}})).on("dragstart",(function(i){if("fixed"!==i.arrangement&&(f.ensureSingle(a._fullLayout._infolayer,"g","dragcover",(function(t){a._fullLayout._dragCover=t})),f.raiseToTop(this),i.interactionState.dragInProgress=i.node,B(i.node),i.interactionState.hovered&&(r.nodeEvents.unhover.apply(0,i.interactionState.hovered),i.interactionState.hovered=!1),"snap"===i.arrangement)){var o=i.traceId+"|"+i.key;i.forceLayouts[o]?i.forceLayouts[o].alpha(1):function(t,e,r,i){!function(t){for(var e=0;e0&&i.forceLayouts[e].alpha(0)}}(0,e,a,r)).stop()}(0,o,i),function(t,e,r,i,a){window.requestAnimationFrame((function o(){var s;for(s=0;s0)window.requestAnimationFrame(o);else{var l=r.node.originalX;r.node.x0=l-r.visibleWidth/2,r.node.x1=l+r.visibleWidth/2,F(r,a)}}))}(t,e,i,o,a)}})).on("drag",(function(r){if("fixed"!==r.arrangement){var n=i.event.x,a=i.event.y;"snap"===r.arrangement?(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2,r.node.y0=a-r.visibleHeight/2,r.node.y1=a+r.visibleHeight/2):("freeform"===r.arrangement&&(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2),a=Math.max(0,Math.min(r.size-r.visibleHeight/2,a)),r.node.y0=a-r.visibleHeight/2,r.node.y1=a+r.visibleHeight/2),B(r.node),"snap"!==r.arrangement&&(r.sankey.update(r.graph),M(t.filter(N(r)),e))}})).on("dragend",(function(t){if("fixed"!==t.arrangement){t.interactionState.dragInProgress=!1;for(var e=0;e5?t.node.label:""})).attr("text-anchor",(function(t){return t.horizontal&&t.left?"end":"start"})),q.transition().ease(n.ease).duration(n.duration).attr("startOffset",O).style("fill",z)}},{"../../components/color":643,"../../components/drawing":665,"../../lib":778,"../../lib/gup":775,"../../registry":911,"./constants":1180,"@plotly/d3-sankey":56,"@plotly/d3-sankey-circular":55,d3:169,"d3-force":160,"d3-interpolate":162,tinycolor2:576}],1185:[function(t,e,r){"use strict";e.exports=function(t,e){for(var r=[],n=t.cd[0].trace,i=n._sankey.graph.nodes,a=0;a<i.length;a++){var o=i[a];if(!o.partOfGroup){var s=[(o.x0+o.x1)/2,(o.y0+o.y1)/2];"v"===n.orientation&&s.reverse(),e&&e.contains(s,!1,a,t)&&r.push({pointNumber:o.pointNumber})}}return r}},{}],1186:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,"tx"),n.mergeArray(e.texttemplate,t,"txt"),n.mergeArray(e.hovertext,t,"htx"),n.mergeArray(e.customdata,t,"data"),n.mergeArray(e.textposition,t,"tp"),e.textfont&&(n.mergeArrayCastPositive(e.textfont.size,t,"ts"),n.mergeArray(e.textfont.color,t,"tc"),n.mergeArray(e.textfont.family,t,"tf"));var i=e.marker;if(i){n.mergeArrayCastPositive(i.size,t,"ms"),n.mergeArrayCastPositive(i.opacity,t,"mo"),n.mergeArray(i.symbol,t,"mx"),n.mergeArray(i.color,t,"mc");var a=i.line;i.line&&(n.mergeArray(a.color,t,"mlc"),n.mergeArrayCastPositive(a.width,t,"mlw"));var o=i.gradient;o&&"none"!==o.type&&(n.mergeArray(o.type,t,"mgt"),n.mergeArray(o.color,t,"mgc"))}}},{"../../lib":778}],1187:[function(t,e,r){"use strict";var n=t("../../plots/template_attributes").texttemplateAttrs,i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../../components/colorscale/attributes"),o=t("../../plots/font_attributes"),s=t("../../components/drawing/attributes").dash,l=t("../../components/drawing"),c=t("./constants"),u=t("../../lib/extend").extendFlat;e.exports={x:{valType:"data_array",editType:"calc+clearAxisTypes",anim:!0},x0:{valType:"any",dflt:0,editType:"calc+clearAxisTypes",anim:!0},dx:{valType:"number",dflt:1,editType:"calc",anim:!0},y:{valType:"data_array",editType:"calc+clearAxisTypes",anim:!0},y0:{valType:"any",dflt:0,editType:"calc+clearAxisTypes",anim:!0},dy:{valType:"number",dflt:1,editType:"calc",anim:!0},xperiod:{valType:"any",dflt:0,editType:"calc"},yperiod:{valType:"any",dflt:0,editType:"calc"},xperiod0:{valType:"any",editType:"calc"},yperiod0:{valType:"any",editType:"calc"},xperiodalignment:{valType:"enumerated",values:["start","middle","end"],dflt:"middle",editType:"calc"},yperiodalignment:{valType:"enumerated",values:["start","middle","end"],dflt:"middle",editType:"calc"},stackgroup:{valType:"string",dflt:"",editType:"calc"},orientation:{valType:"enumerated",values:["v","h"],editType:"calc"},groupnorm:{valType:"enumerated",values:["","fraction","percent"],dflt:"",editType:"calc"},stackgaps:{valType:"enumerated",values:["infer zero","interpolate"],dflt:"infer zero",editType:"calc"},text:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},texttemplate:n({},{}),hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"style"},mode:{valType:"flaglist",flags:["lines","markers","text"],extras:["none"],editType:"calc"},hoveron:{valType:"flaglist",flags:["points","fills"],editType:"style"},hovertemplate:i({},{keys:c.eventDataKeys}),line:{color:{valType:"color",editType:"style",anim:!0},width:{valType:"number",min:0,dflt:2,editType:"style",anim:!0},shape:{valType:"enumerated",values:["linear","spline","hv","vh","hvh","vhv"],dflt:"linear",editType:"plot"},smoothing:{valType:"number",min:0,max:1.3,dflt:1,editType:"plot"},dash:u({},s,{editType:"style"}),simplify:{valType:"boolean",dflt:!0,editType:"plot"},editType:"plot"},connectgaps:{valType:"boolean",dflt:!1,editType:"calc"},cliponaxis:{valType:"boolean",dflt:!0,editType:"plot"},fill:{valType:"enumerated",values:["none","tozeroy","tozerox","tonexty","tonextx","toself","tonext"],editType:"calc"},fillcolor:{valType:"color",editType:"style",anim:!0},marker:u({symbol:{valType:"enumerated",values:l.symbolList,dflt:"circle",arrayOk:!0,editType:"style"},opacity:{valType:"number",min:0,max:1,arrayOk:!0,editType:"style",anim:!0},size:{valType:"number",min:0,dflt:6,arrayOk:!0,editType:"calc",anim:!0},maxdisplayed:{valType:"number",min:0,dflt:0,editType:"plot"},sizeref:{valType:"number",dflt:1,editType:"calc"},sizemin:{valType:"number",min:0,dflt:0,editType:"calc"},sizemode:{valType:"enumerated",values:["diameter","area"],dflt:"diameter",editType:"calc"},line:u({width:{valType:"number",min:0,arrayOk:!0,editType:"style",anim:!0},editType:"calc"},a("marker.line",{anim:!0})),gradient:{type:{valType:"enumerated",values:["radial","horizontal","vertical","none"],arrayOk:!0,dflt:"none",editType:"calc"},color:{valType:"color",arrayOk:!0,editType:"calc"},editType:"calc"},editType:"calc"},a("marker",{anim:!0})),selected:{marker:{opacity:{valType:"number",min:0,max:1,editType:"style"},color:{valType:"color",editType:"style"},size:{valType:"number",min:0,editType:"style"},editType:"style"},textfont:{color:{valType:"color",editType:"style"},editType:"style"},editType:"style"},unselected:{marker:{opacity:{valType:"number",min:0,max:1,editType:"style"},color:{valType:"color",editType:"style"},size:{valType:"number",min:0,editType:"style"},editType:"style"},textfont:{color:{valType:"color",editType:"style"},editType:"style"},editType:"style"},textposition:{valType:"enumerated",values:["top left","top center","top right","middle left","middle center","middle right","bottom left","bottom center","bottom right"],dflt:"middle center",arrayOk:!0,editType:"calc"},textfont:o({editType:"calc",colorEditType:"style",arrayOk:!0}),r:{valType:"data_array",editType:"calc"},t:{valType:"data_array",editType:"calc"}}},{"../../components/colorscale/attributes":650,"../../components/drawing":665,"../../components/drawing/attributes":664,"../../lib/extend":768,"../../plots/font_attributes":856,"../../plots/template_attributes":906,"./constants":1191}],1188:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib"),a=t("../../plots/cartesian/axes"),o=t("../../plots/cartesian/align_period"),s=t("../../constants/numerical").BADNUM,l=t("./subtypes"),c=t("./colorscale_calc"),u=t("./arrays_to_calcdata"),f=t("./calc_selection");function h(t,e,r,n,i,o,s){var c=e._length,u=t._fullLayout,f=r._id,h=n._id,p=u._firstScatter[g(e)]===e.uid,d=(m(e,u,r,n)||{}).orientation,v=e.fill;r._minDtick=0,n._minDtick=0;var y={padded:!0},x={padded:!0};s&&(y.ppad=x.ppad=s);var b=c<2||i[0]!==i[c-1]||o[0]!==o[c-1];b&&("tozerox"===v||"tonextx"===v&&(p||"h"===d))?y.tozero=!0:(e.error_y||{}).visible||"tonexty"!==v&&"tozeroy"!==v&&(l.hasMarkers(e)||l.hasText(e))||(y.padded=!1,y.ppad=0),b&&("tozeroy"===v||"tonexty"===v&&(p||"v"===d))?x.tozero=!0:"tonextx"!==v&&"tozerox"!==v||(x.padded=!1),f&&(e._extremes[f]=a.findExtremes(r,i,y)),h&&(e._extremes[h]=a.findExtremes(n,o,x))}function p(t,e){if(l.hasMarkers(t)){var r,n=t.marker,o=1.6*(t.marker.sizeref||1);if(r="area"===t.marker.sizemode?function(t){return Math.max(Math.sqrt((t||0)/o),3)}:function(t){return Math.max((t||0)/o,3)},i.isArrayOrTypedArray(n.size)){var s={type:"linear"};a.setConvert(s);for(var c=s.makeCalcdata(t.marker,"size"),u=new Array(e),f=0;f<e;f++)u[f]=r(c[f]);return u}return r(n.size)}}function d(t,e){var r=g(e),n=t._firstScatter;n[r]||(n[r]=e.uid)}function g(t){var e=t.stackgroup;return t.xaxis+t.yaxis+t.type+(e?"-"+e:"")}function m(t,e,r,n){var i=t.stackgroup;if(i){var a=e._scatterStackOpts[r._id+n._id][i],o="v"===a.orientation?n:r;return"linear"===o.type||"log"===o.type?a:void 0}}e.exports={calc:function(t,e){var r,l,g,v,y,x,b=t._fullLayout,_=a.getFromId(t,e.xaxis||"x"),w=a.getFromId(t,e.yaxis||"y"),T=_.makeCalcdata(e,"x"),k=w.makeCalcdata(e,"y"),M=o(e,_,"x",T),A=o(e,w,"y",k),S=e._length,E=new Array(S),C=e.ids,L=m(e,b,_,w),I=!1;d(b,e);var P,z="x",O="y";L?(i.pushUnique(L.traceIndices,e._expandedIndex),(r="v"===L.orientation)?(O="s",P="x"):(z="s",P="y"),y="interpolate"===L.stackgaps):h(t,e,_,w,M,A,p(e,S));var D=!!e.xperiodalignment,R=!!e.yperiodalignment;for(l=0;l<S;l++){var F=E[l]={},B=n(M[l]),N=n(A[l]);B&&N?(F[z]=M[l],F[O]=A[l],D&&(F.orig_x=T[l]),R&&(F.orig_y=k[l])):L&&(r?B:N)?(F[P]=r?M[l]:A[l],F.gap=!0,y?(F.s=s,I=!0):F.s=0):F[z]=F[O]=s,C&&(F.id=String(C[l]))}if(u(E,e),c(t,e),f(E,e),L){for(l=0;l<E.length;)E[l][P]===s?E.splice(l,1):l++;if(i.sort(E,(function(t,e){return t[P]-e[P]||t.i-e.i})),I){for(l=0;l<E.length-1&&E[l].gap;)l++;for((x=E[l].s)||(x=E[l].s=0),g=0;g<l;g++)E[g].s=x;for(v=E.length-1;v>l&&E[v].gap;)v--;for(x=E[v].s,g=E.length-1;g>v;g--)E[g].s=x;for(;lA[u]&&u=0;i--){var a=t[i];if("scatter"===a.type&&a.xaxis===r.xaxis&&a.yaxis===r.yaxis){a.opacity=void 0;break}}}}}},{}],1194:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry"),a=t("./attributes"),o=t("./constants"),s=t("./subtypes"),l=t("./xy_defaults"),c=t("./period_defaults"),u=t("./stack_defaults"),f=t("./marker_defaults"),h=t("./line_defaults"),p=t("./line_shape_defaults"),d=t("./text_defaults"),g=t("./fillcolor_defaults");e.exports=function(t,e,r,m){function v(r,i){return n.coerce(t,e,a,r,i)}var y=l(t,e,m,v);if(y||(e.visible=!1),e.visible){c(t,e,m,v);var x=u(t,e,m,v),b=!x&&yG!=(F=P[L][1])>=G&&(O=P[L-1][0],D=P[L][0],F-R&&(z=O+(D-O)*(G-R)/(F-R),U=Math.min(U,z),V=Math.max(V,z)));U=Math.max(U,0),V=Math.min(V,h._length);var Y=s.defaultLine;return s.opacity(f.fillcolor)?Y=f.fillcolor:s.opacity((f.line||{}).color)&&(Y=f.line.color),n.extendFlat(t,{distance:t.maxHoverDistance,x0:U,x1:V,y0:G,y1:G,color:Y,hovertemplate:!1}),delete t.index,f.text&&!Array.isArray(f.text)?t.text=String(f.text):t.text=f.name,[t]}}}},{"../../components/color":643,"../../components/fx":683,"../../lib":778,"../../registry":911,"./get_trace_color":1197}],1199:[function(t,e,r){"use strict";var n=t("./subtypes");e.exports={hasLines:n.hasLines,hasMarkers:n.hasMarkers,hasText:n.hasText,isBubble:n.isBubble,attributes:t("./attributes"),supplyDefaults:t("./defaults"),crossTraceDefaults:t("./cross_trace_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./cross_trace_calc"),arraysToCalcdata:t("./arrays_to_calcdata"),plot:t("./plot"),colorbar:t("./marker_colorbar"),formatLabels:t("./format_labels"),style:t("./style").style,styleOnSelect:t("./style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("./select"),animatable:!0,moduleType:"trace",name:"scatter",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","symbols","errorBarsOK","showLegend","scatter-like","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"./arrays_to_calcdata":1186,"./attributes":1187,"./calc":1188,"./cross_trace_calc":1192,"./cross_trace_defaults":1193,"./defaults":1194,"./format_labels":1196,"./hover":1198,"./marker_colorbar":1205,"./plot":1208,"./select":1209,"./style":1211,"./subtypes":1212}],1200:[function(t,e,r){"use strict";var n=t("../../lib").isArrayOrTypedArray,i=t("../../components/colorscale/helpers").hasColorscale,a=t("../../components/colorscale/defaults");e.exports=function(t,e,r,o,s,l){var c=(t.marker||{}).color;(s("line.color",r),i(t,"line"))?a(t,e,o,s,{prefix:"line.",cLetter:"c"}):s("line.color",!n(c)&&c||r);s("line.width"),(l||{}).noDash||s("line.dash")}},{"../../components/colorscale/defaults":653,"../../components/colorscale/helpers":654,"../../lib":778}],1201:[function(t,e,r){"use strict";var n=t("../../constants/numerical"),i=n.BADNUM,a=n.LOG_CLIP,o=a+.5,s=a-.5,l=t("../../lib"),c=l.segmentsIntersect,u=l.constrain,f=t("./constants");e.exports=function(t,e){var r,n,a,h,p,d,g,m,v,y,x,b,_,w,T,k,M,A,S=e.xaxis,E=e.yaxis,C="log"===S.type,L="log"===E.type,I=S._length,P=E._length,z=e.connectGaps,O=e.baseTolerance,D=e.shape,R="linear"===D,F=e.fill&&"none"!==e.fill,B=[],N=f.minTolerance,j=t.length,U=new Array(j),V=0;function q(r){var n=t[r];if(!n)return!1;var a=e.linearized?S.l2p(n.x):S.c2p(n.x),l=e.linearized?E.l2p(n.y):E.c2p(n.y);if(a===i){if(C&&(a=S.c2p(n.x,!0)),a===i)return!1;L&&l===i&&(a*=Math.abs(S._m*P*(S._m>0?o:s)/(E._m*I*(E._m>0?o:s)))),a*=1e3}if(l===i){if(L&&(l=E.c2p(n.y,!0)),l===i)return!1;l*=1e3}return[a,l]}function H(t,e,r,n){var i=r-t,a=n-e,o=.5-t,s=.5-e,l=i*i+a*a,c=i*o+a*s;if(c>0&&crt||t[1]it)return[u(t[0],et,rt),u(t[1],nt,it)]}function st(t,e){return t[0]===e[0]&&(t[0]===et||t[0]===rt)||(t[1]===e[1]&&(t[1]===nt||t[1]===it)||void 0)}function lt(t,e,r){return function(n,i){var a=ot(n),o=ot(i),s=[];if(a&&o&&st(a,o))return s;a&&s.push(a),o&&s.push(o);var c=2*l.constrain((n[t]+i[t])/2,e,r)-((a||n)[t]+(o||i)[t]);c&&((a&&o?c>0==a[t]>o[t]?a:o:a||o)[t]+=c);return s}}function ct(t){var e=t[0],r=t[1],n=e===U[V-1][0],i=r===U[V-1][1];if(!n||!i)if(V>1){var a=e===U[V-2][0],o=r===U[V-2][1];n&&(e===et||e===rt)&&a?o?V--:U[V-1]=t:i&&(r===nt||r===it)&&o?a?V--:U[V-1]=t:U[V++]=t}else U[V++]=t}function ut(t){U[V-1][0]!==t[0]&&U[V-1][1]!==t[1]&&ct([Z,J]),ct(t),K=null,Z=J=0}function ft(t){if(M=t[0]/I,A=t[1]/P,W=t[0]rt?rt:0,X=t[1]it?it:0,W||X){if(V)if(K){var e=$(K,t);e.length>1&&(ut(e[0]),U[V++]=e[1])}else Q=$(U[V-1],t)[0],U[V++]=Q;else U[V++]=[W||t[0],X||t[1]];var r=U[V-1];W&&X&&(r[0]!==W||r[1]!==X)?(K&&(Z!==W&&J!==X?ct(Z&&J?(n=K,a=(i=t)[0]-n[0],o=(i[1]-n[1])/a,(n[1]*i[0]-i[1]*n[0])/a>0?[o>0?et:rt,it]:[o>0?rt:et,nt]):[Z||W,J||X]):Z&&J&&ct([Z,J])),ct([W,X])):Z-W&&J-X&&ct([W||Z,X||J]),K=t,Z=W,J=X}else K&&ut($(K,t)[0]),U[V++]=t;var n,i,a,o}for("linear"===D||"spline"===D?$=function(t,e){for(var r=[],n=0,i=0;i<4;i++){var a=at[i],o=c(t[0],t[1],e[0],e[1],a[0],a[1],a[2],a[3]);o&&(!n||Math.abs(o.x-r[0][0])>1||Math.abs(o.y-r[0][1])>1)&&(o=[o.x,o.y],n&&Y(o,t)G(d,ht))break;a=d,(_=v[0]*m[0]+v[1]*m[1])>x?(x=_,h=d,g=!1):_=t.length||!d)break;ft(d),n=d}}else ft(h)}K&&ct([Z||K[0],J||K[1]]),B.push(U.slice(0,V))}return B}},{"../../constants/numerical":753,"../../lib":778,"./constants":1191}],1202:[function(t,e,r){"use strict";e.exports=function(t,e,r){"spline"===r("line.shape")&&r("line.smoothing")}},{}],1203:[function(t,e,r){"use strict";var n={tonextx:1,tonexty:1,tonext:1};e.exports=function(t,e,r){var i,a,o,s,l,c={},u=!1,f=-1,h=0,p=-1;for(a=0;a=0?l=p:(l=p=h,h++),l0?Math.max(e,i):0}}},{"fast-isnumeric":241}],1205:[function(t,e,r){"use strict";e.exports={container:"marker",min:"cmin",max:"cmax"}},{}],1206:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("../../components/colorscale/helpers").hasColorscale,a=t("../../components/colorscale/defaults"),o=t("./subtypes");e.exports=function(t,e,r,s,l,c){var u=o.isBubble(t),f=(t.line||{}).color;(c=c||{},f&&(r=f),l("marker.symbol"),l("marker.opacity",u?.7:1),l("marker.size"),l("marker.color",r),i(t,"marker")&&a(t,e,s,l,{prefix:"marker.",cLetter:"c"}),c.noSelect||(l("selected.marker.color"),l("unselected.marker.color"),l("selected.marker.size"),l("unselected.marker.size")),c.noLine||(l("marker.line.color",f&&!Array.isArray(f)&&e.marker.color!==f?f:u?n.background:n.defaultLine),i(t,"marker.line")&&a(t,e,s,l,{prefix:"marker.line.",cLetter:"c"}),l("marker.line.width",u?1:0)),u&&(l("marker.sizeref"),l("marker.sizemin"),l("marker.sizemode")),c.gradient)&&("none"!==l("marker.gradient.type")&&l("marker.gradient.color"))}},{"../../components/color":643,"../../components/colorscale/defaults":653,"../../components/colorscale/helpers":654,"./subtypes":1212}],1207:[function(t,e,r){"use strict";var n=t("../../lib").dateTick0,i=t("../../constants/numerical").ONEWEEK;function a(t,e){return n(e,t%i==0?1:0)}e.exports=function(t,e,r,n,i){if(i||(i={x:!0,y:!0}),i.x){var o=n("xperiod");o&&(n("xperiod0",a(o,e.xcalendar)),n("xperiodalignment"))}if(i.y){var s=n("yperiod");s&&(n("yperiod0",a(s,e.ycalendar)),n("yperiodalignment"))}}},{"../../constants/numerical":753,"../../lib":778}],1208:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../registry"),a=t("../../lib"),o=a.ensureSingle,s=a.identity,l=t("../../components/drawing"),c=t("./subtypes"),u=t("./line_points"),f=t("./link_traces"),h=t("../../lib/polygon").tester;function p(t,e,r,f,p,d,g){var m;!function(t,e,r,i,o){var s=r.xaxis,l=r.yaxis,u=n.extent(a.simpleMap(s.range,s.r2c)),f=n.extent(a.simpleMap(l.range,l.r2c)),h=i[0].trace;if(!c.hasMarkers(h))return;var p=h.marker.maxdisplayed;if(0===p)return;var d=i.filter((function(t){return t.x>=u[0]&&t.x<=u[1]&&t.y>=f[0]&&t.y<=f[1]})),g=Math.ceil(d.length/p),m=0;o.forEach((function(t,r){var n=t[0].trace;c.hasMarkers(n)&&n.marker.maxdisplayed>0&&r0;function y(t){return v?t.transition():t}var x=r.xaxis,b=r.yaxis,_=f[0].trace,w=_.line,T=n.select(d),k=o(T,"g","errorbars"),M=o(T,"g","lines"),A=o(T,"g","points"),S=o(T,"g","text");if(i.getComponentMethod("errorbars","plot")(t,k,r,g),!0===_.visible){var E,C;y(T).style("opacity",_.opacity);var L=_.fill.charAt(_.fill.length-1);"x"!==L&&"y"!==L&&(L=""),f[0][r.isRangePlot?"nodeRangePlot3":"node3"]=T;var I,P,z="",O=[],D=_._prevtrace;D&&(z=D._prevRevpath||"",C=D._nextFill,O=D._polygons);var R,F,B,N,j,U,V,q="",H="",G=[],Y=a.noop;if(E=_._ownFill,c.hasLines(_)||"none"!==_.fill){for(C&&C.datum(f),-1!==["hv","vh","hvh","vhv"].indexOf(w.shape)?(R=l.steps(w.shape),F=l.steps(w.shape.split("").reverse().join(""))):R=F="spline"===w.shape?function(t){var e=t[t.length-1];return t.length>1&&t[0][0]===e[0]&&t[0][1]===e[1]?l.smoothclosed(t.slice(1),w.smoothing):l.smoothopen(t,w.smoothing)}:function(t){return"M"+t.join("L")},B=function(t){return F(t.reverse())},G=u(f,{xaxis:x,yaxis:b,connectGaps:_.connectgaps,baseTolerance:Math.max(w.width||1,3)/4,shape:w.shape,simplify:w.simplify,fill:_.fill}),V=_._polygons=new Array(G.length),m=0;m1){var r=n.select(this);if(r.datum(f),t)y(r.style("opacity",0).attr("d",I).call(l.lineGroupStyle)).style("opacity",1);else{var i=y(r);i.attr("d",I),l.singleLineStyle(f,i)}}}}}var W=M.selectAll(".js-line").data(G);y(W.exit()).style("opacity",0).remove(),W.each(Y(!1)),W.enter().append("path").classed("js-line",!0).style("vector-effect","non-scaling-stroke").call(l.lineGroupStyle).each(Y(!0)),l.setClipUrl(W,r.layerClipId,t),G.length?(E?(E.datum(f),N&&U&&(L?("y"===L?N[1]=U[1]=b.c2p(0,!0):"x"===L&&(N[0]=U[0]=x.c2p(0,!0)),y(E).attr("d","M"+U+"L"+N+"L"+q.substr(1)).call(l.singleFillStyle)):y(E).attr("d",q+"Z").call(l.singleFillStyle))):C&&("tonext"===_.fill.substr(0,6)&&q&&z?("tonext"===_.fill?y(C).attr("d",q+"Z"+z+"Z").call(l.singleFillStyle):y(C).attr("d",q+"L"+z.substr(1)+"Z").call(l.singleFillStyle),_._polygons=_._polygons.concat(O)):(Z(C),_._polygons=null)),_._prevRevpath=H,_._prevPolygons=V):(E?Z(E):C&&Z(C),_._polygons=_._prevRevpath=_._prevPolygons=null),A.datum(f),S.datum(f),function(e,i,a){var o,u=a[0].trace,f=c.hasMarkers(u),h=c.hasText(u),p=tt(u),d=et,g=et;if(f||h){var m=s,_=u.stackgroup,w=_&&"infer zero"===t._fullLayout._scatterStackOpts[x._id+b._id][_].stackgaps;u.marker.maxdisplayed||u._needsCull?m=w?K:J:_&&!w&&(m=Q),f&&(d=m),h&&(g=m)}var T,k=(o=e.selectAll("path.point").data(d,p)).enter().append("path").classed("point",!0);v&&k.call(l.pointStyle,u,t).call(l.translatePoints,x,b).style("opacity",0).transition().style("opacity",1),o.order(),f&&(T=l.makePointStyleFns(u)),o.each((function(e){var i=n.select(this),a=y(i);l.translatePoint(e,a,x,b)?(l.singlePointStyle(e,a,u,T,t),r.layerClipId&&l.hideOutsideRangePoint(e,a,x,b,u.xcalendar,u.ycalendar),u.customdata&&i.classed("plotly-customdata",null!==e.data&&void 0!==e.data)):a.remove()})),v?o.exit().transition().style("opacity",0).remove():o.exit().remove(),(o=i.selectAll("g").data(g,p)).enter().append("g").classed("textpoint",!0).append("text"),o.order(),o.each((function(t){var e=n.select(this),i=y(e.select("text"));l.translatePoint(t,i,x,b)?r.layerClipId&&l.hideOutsideRangePoint(t,e,x,b,u.xcalendar,u.ycalendar):e.remove()})),o.selectAll("text").call(l.textPointStyle,u,t).each((function(t){var e=x.c2p(t.x),r=b.c2p(t.y);n.select(this).selectAll("tspan.line").each((function(){y(n.select(this)).attr({x:e,y:r})}))})),o.exit().remove()}(A,S,f);var X=!1===_.cliponaxis?null:r.layerClipId;l.setClipUrl(A,X,t),l.setClipUrl(S,X,t)}function Z(t){y(t).attr("d","M0,0Z")}function J(t){return t.filter((function(t){return!t.gap&&t.vis}))}function K(t){return t.filter((function(t){return t.vis}))}function Q(t){return t.filter((function(t){return!t.gap}))}function $(t){return t.id}function tt(t){if(t.ids)return $}function et(){return!1}}e.exports=function(t,e,r,i,a,c){var u,h,d=!a,g=!!a&&a.duration>0,m=f(t,e,r);((u=i.selectAll("g.trace").data(m,(function(t){return t[0].trace.uid}))).enter().append("g").attr("class",(function(t){return"trace scatter trace"+t[0].trace.uid})).style("stroke-miterlimit",2),u.order(),function(t,e,r){e.each((function(e){var i=o(n.select(this),"g","fills");l.setClipUrl(i,r.layerClipId,t);var a=e[0].trace,c=[];a._ownfill&&c.push("_ownFill"),a._nexttrace&&c.push("_nextFill");var u=i.selectAll("g").data(c,s);u.enter().append("g"),u.exit().each((function(t){a[t]=null})).remove(),u.order().each((function(t){a[t]=o(n.select(this),"path","js-fill")}))}))}(t,u,e),g)?(c&&(h=c()),n.transition().duration(a.duration).ease(a.easing).each("end",(function(){h&&h()})).each("interrupt",(function(){h&&h()})).each((function(){i.selectAll("g.trace").each((function(r,n){p(t,n,e,r,m,this,a)}))}))):u.each((function(r,n){p(t,n,e,r,m,this,a)}));d&&u.exit().remove(),i.selectAll("path:not([d])").remove()}},{"../../components/drawing":665,"../../lib":778,"../../lib/polygon":790,"../../registry":911,"./line_points":1201,"./link_traces":1203,"./subtypes":1212,d3:169}],1209:[function(t,e,r){"use strict";var n=t("./subtypes");e.exports=function(t,e){var r,i,a,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[],f=s[0].trace;if(!n.hasMarkers(f)&&!n.hasText(f))return[];if(!1===e)for(r=0;r0){var h=i.c2l(u);i._lowerLogErrorBound||(i._lowerLogErrorBound=h),i._lowerErrorBound=Math.min(i._lowerLogErrorBound,h)}}else o[s]=[-l[0]*r,l[1]*r]}return o}e.exports=function(t,e,r){var n=[i(t.x,t.error_x,e[0],r.xaxis),i(t.y,t.error_y,e[1],r.yaxis),i(t.z,t.error_z,e[2],r.zaxis)],a=function(t){for(var e=0;e-1?-1:t.indexOf("right")>-1?1:0}function b(t){return null==t?0:t.indexOf("top")>-1?-1:t.indexOf("bottom")>-1?1:0}function _(t,e){return e(4*t)}function w(t){return p[t]}function T(t,e,r,n,i){var a=null;if(l.isArrayOrTypedArray(t)){a=[];for(var o=0;o=0){var g=function(t,e,r){var n,i=(r+1)%3,a=(r+2)%3,o=[],l=[];for(n=0;n=0&&f("surfacecolor",h||p);for(var d=["x","y","z"],g=0;g<3;++g){var m="projection."+d[g];f(m+".show")&&(f(m+".opacity"),f(m+".scale"))}var v=n.getComponentMethod("errorbars","supplyDefaults");v(t,e,h||p||r,{axis:"z"}),v(t,e,h||p||r,{axis:"y",inherit:"z"}),v(t,e,h||p||r,{axis:"x",inherit:"z"})}else e.visible=!1}},{"../../lib":778,"../../registry":911,"../scatter/line_defaults":1200,"../scatter/marker_defaults":1206,"../scatter/subtypes":1212,"../scatter/text_defaults":1213,"./attributes":1215}],1220:[function(t,e,r){"use strict";e.exports={plot:t("./convert"),attributes:t("./attributes"),markerSymbols:t("../../constants/gl3d_markers"),supplyDefaults:t("./defaults"),colorbar:[{container:"marker",min:"cmin",max:"cmax"},{container:"line",min:"cmin",max:"cmax"}],calc:t("./calc"),moduleType:"trace",name:"scatter3d",basePlotModule:t("../../plots/gl3d"),categories:["gl3d","symbols","showLegend","scatter-like"],meta:{}}},{"../../constants/gl3d_markers":751,"../../plots/gl3d":870,"./attributes":1215,"./calc":1216,"./convert":1218,"./defaults":1219}],1221:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../../plots/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../../plots/template_attributes").texttemplateAttrs,s=t("../../components/colorscale/attributes"),l=t("../../lib/extend").extendFlat,c=n.marker,u=n.line,f=c.line;e.exports={carpet:{valType:"string",editType:"calc"},a:{valType:"data_array",editType:"calc"},b:{valType:"data_array",editType:"calc"},mode:l({},n.mode,{dflt:"markers"}),text:l({},n.text,{}),texttemplate:o({editType:"plot"},{keys:["a","b","text"]}),hovertext:l({},n.hovertext,{}),line:{color:u.color,width:u.width,dash:u.dash,shape:l({},u.shape,{values:["linear","spline"]}),smoothing:u.smoothing,editType:"calc"},connectgaps:n.connectgaps,fill:l({},n.fill,{values:["none","toself","tonext"],dflt:"none"}),fillcolor:n.fillcolor,marker:l({symbol:c.symbol,opacity:c.opacity,maxdisplayed:c.maxdisplayed,size:c.size,sizeref:c.sizeref,sizemin:c.sizemin,sizemode:c.sizemode,line:l({width:f.width,editType:"calc"},s("marker.line")),gradient:c.gradient,editType:"calc"},s("marker")),textfont:n.textfont,textposition:n.textposition,selected:n.selected,unselected:n.unselected,hoverinfo:l({},i.hoverinfo,{flags:["a","b","text","name"]}),hoveron:n.hoveron,hovertemplate:a()}},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../scatter/attributes":1187}],1222:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../scatter/colorscale_calc"),a=t("../scatter/arrays_to_calcdata"),o=t("../scatter/calc_selection"),s=t("../scatter/calc").calcMarkerSize,l=t("../carpet/lookup_carpetid");e.exports=function(t,e){var r=e._carpetTrace=l(t,e);if(r&&r.visible&&"legendonly"!==r.visible){var c;e.xaxis=r.xaxis,e.yaxis=r.yaxis;var u,f,h=e._length,p=new Array(h),d=!1;for(c=0;c<h;c++)if(u=e.a[c],f=e.b[c],n(u)&&n(f)){var g=r.ab2xy(+u,+f,!0),m=r.isVisible(+u,+f);m||(d=!0),p[c]={x:g[0],y:g[1],a:u,b:f,vis:m}}else p[c]={x:!1,y:!1};return e._needsCull=d,p[0].carpet=r,p[0].trace=e,s(e,h),i(t,e),a(p,e),o(p,e),p}}},{"../carpet/lookup_carpetid":981,"../scatter/arrays_to_calcdata":1186,"../scatter/calc":1188,"../scatter/calc_selection":1189,"../scatter/colorscale_calc":1190,"fast-isnumeric":241}],1223:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../scatter/constants"),a=t("../scatter/subtypes"),o=t("../scatter/marker_defaults"),s=t("../scatter/line_defaults"),l=t("../scatter/line_shape_defaults"),c=t("../scatter/text_defaults"),u=t("../scatter/fillcolor_defaults"),f=t("./attributes");e.exports=function(t,e,r,h){function p(r,i){return n.coerce(t,e,f,r,i)}p("carpet"),e.xaxis="x",e.yaxis="y";var d=p("a"),g=p("b"),m=Math.min(d.length,g.length);if(m){e._length=m,p("text"),p("texttemplate"),p("hovertext"),p("mode",m<i.PTS_LINESONLY?"lines+markers":"lines"),a.hasLines(e)&&(s(t,e,r,h,p),l(t,e,p),p("connectgaps")),a.hasMarkers(e)&&o(t,e,r,h,p,{gradient:!0}),a.hasText(e)&&c(t,e,h,p);var v=[];(a.hasMarkers(e)||a.hasText(e))&&(p("marker.maxdisplayed"),v.push("points")),p("fill"),"none"!==e.fill&&(u(t,e,r,p),a.hasLines(e)||l(t,e,p)),"tonext"!==e.fill&&"toself"!==e.fill||v.push("fills"),"fills"!==p("hoveron",v.join("+")||"points")&&p("hovertemplate"),n.coerceSelectionMarkerOpacity(e,p)}else e.visible=!1}},{"../../lib":778,"../scatter/constants":1191,"../scatter/fillcolor_defaults":1195,"../scatter/line_defaults":1200,"../scatter/line_shape_defaults":1202,"../scatter/marker_defaults":1206,"../scatter/subtypes":1212,"../scatter/text_defaults":1213,"./attributes":1221}],1224:[function(t,e,r){"use strict";e.exports=function(t,e,r,n,i){var a=n[i];return t.a=a.a,t.b=a.b,t.y=a.y,t}},{}],1225:[function(t,e,r){"use strict";e.exports=function(t,e){var r={},n=e._carpet,i=n.ab2ij([t.a,t.b]),a=Math.floor(i[0]),o=i[0]-a,s=Math.floor(i[1]),l=i[1]-s,c=n.evalxy([],a,s,o,l);return r.yLabel=c[1].toFixed(3),r}},{}],1226:[function(t,e,r){"use strict";var n=t("../scatter/hover"),i=t("../../lib").fillText;e.exports=function(t,e,r,a){var o=n(t,e,r,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index){var l=1-s.y0/t.ya._length,c=t.xa._length,u=c*l/2,f=c-u;return s.x0=Math.max(Math.min(s.x0,f),u),s.x1=Math.max(Math.min(s.x1,f),u),o}var h=s.cd[s.index];s.a=h.a,s.b=h.b,s.xLabelVal=void 0,s.yLabelVal=void 0;var p=s.trace,d=p._carpet,g=p._module.formatLabels(h,p);s.yLabel=g.yLabel,delete s.text;var m=[];if(!p.hovertemplate){var v=(h.hi||p.hoverinfo).split("+");-1!==v.indexOf("all")&&(v=["a","b","text"]),-1!==v.indexOf("a")&&y(d.aaxis,h.a),-1!==v.indexOf("b")&&y(d.baxis,h.b),m.push("y: "+s.yLabel),-1!==v.indexOf("text")&&i(h,p,m),s.extraText=m.join("<br>")}return o}function y(t,e){var r;r=t.labelprefix&&t.labelprefix.length>0?t.labelprefix.replace(/ = $/,""):t._hovertitle,m.push(r+": "+e.toFixed(3)+t.labelsuffix)}}},{"../../lib":778,"../scatter/hover":1198}],1227:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),plot:t("./plot"),style:t("../scatter/style").style,styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../scatter/select"),eventData:t("./event_data"),moduleType:"trace",name:"scattercarpet",basePlotModule:t("../../plots/cartesian"),categories:["svg","carpet","symbols","showLegend","carpetDependent","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../scatter/marker_colorbar":1205,"../scatter/select":1209,"../scatter/style":1211,"./attributes":1221,"./calc":1222,"./defaults":1223,"./event_data":1224,"./format_labels":1225,"./hover":1226,"./plot":1228}],1228:[function(t,e,r){"use strict";var n=t("../scatter/plot"),i=t("../../plots/cartesian/axes"),a=t("../../components/drawing");e.exports=function(t,e,r,o){var s,l,c,u=r[0][0].carpet,f={xaxis:i.getFromId(t,u.xaxis||"x"),yaxis:i.getFromId(t,u.yaxis||"y"),plot:e.plot};for(n(t,f,r,o),s=0;s")}(c,g,t,l[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}}},{"../../components/fx":683,"../../constants/numerical":753,"../../lib":778,"../scatter/get_trace_color":1197,"./attributes":1229}],1235:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),calcGeoJSON:t("./plot").calcGeoJSON,plot:t("./plot").plot,style:t("./style"),styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("./select"),moduleType:"trace",name:"scattergeo",basePlotModule:t("../../plots/geo"),categories:["geo","symbols","showLegend","scatter-like"],meta:{}}},{"../../plots/geo":860,"../scatter/marker_colorbar":1205,"../scatter/style":1211,"./attributes":1229,"./calc":1230,"./defaults":1231,"./event_data":1232,"./format_labels":1233,"./hover":1234,"./plot":1236,"./select":1237,"./style":1238}],1236:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../lib/topojson_utils").getTopojsonFeatures,o=t("../../lib/geojson_utils"),s=t("../../lib/geo_location_utils"),l=t("../../plots/cartesian/autorange").findExtremes,c=t("../../constants/numerical").BADNUM,u=t("../scatter/calc").calcMarkerSize,f=t("../scatter/subtypes"),h=t("./style");e.exports={calcGeoJSON:function(t,e){var r,n,i=t[0].trace,o=e[i.geo],f=o._subplot,h=i._length;if(Array.isArray(i.locations)){var p=i.locationmode,d="geojson-id"===p?s.extractTraceFeature(t):a(i,f.topojson);for(r=0;r=m,k=2*w,M={},A=x.makeCalcdata(e,"x"),S=b.makeCalcdata(e,"y"),E=s(e,x,"x",A),C=s(e,b,"y",S);e._x=E,e._y=C,e.xperiodalignment&&(e._origX=A),e.yperiodalignment&&(e._origY=S);var L=new Array(k);for(r=0;r1&&i.extendFlat(s.line,p.linePositions(t,r,n));if(s.errorX||s.errorY){var l=p.errorBarPositions(t,r,n,a,o);s.errorX&&i.extendFlat(s.errorX,l.x),s.errorY&&i.extendFlat(s.errorY,l.y)}s.text&&(i.extendFlat(s.text,{positions:n},p.textPosition(t,r,s.text,s.marker)),i.extendFlat(s.textSel,{positions:n},p.textPosition(t,r,s.text,s.markerSel)),i.extendFlat(s.textUnsel,{positions:n},p.textPosition(t,r,s.text,s.markerUnsel)));return s}(t,0,e,L,E,C),O=d(t,_);return f(y,e),T?z.marker&&(P=2*(z.marker.sizeAvg||Math.max(z.marker.size,3))):P=c(e,w),u(t,e,x,b,E,C,P),z.errorX&&v(e,x,z.errorX),z.errorY&&v(e,b,z.errorY),z.fill&&!O.fill2d&&(O.fill2d=!0),z.marker&&!O.scatter2d&&(O.scatter2d=!0),z.line&&!O.line2d&&(O.line2d=!0),!z.errorX&&!z.errorY||O.error2d||(O.error2d=!0),z.text&&!O.glText&&(O.glText=!0),z.marker&&(z.marker.snap=w),O.lineOptions.push(z.line),O.errorXOptions.push(z.errorX),O.errorYOptions.push(z.errorY),O.fillOptions.push(z.fill),O.markerOptions.push(z.marker),O.markerSelectedOptions.push(z.markerSel),O.markerUnselectedOptions.push(z.markerUnsel),O.textOptions.push(z.text),O.textSelectedOptions.push(z.textSel),O.textUnselectedOptions.push(z.textUnsel),O.selectBatch.push([]),O.unselectBatch.push([]),M._scene=O,M.index=O.count,M.x=E,M.y=C,M.positions=L,O.count++,[{x:!1,y:!1,t:M,trace:e}]}},{"../../constants/numerical":753,"../../lib":778,"../../plots/cartesian/align_period":825,"../../plots/cartesian/autorange":827,"../../plots/cartesian/axis_ids":831,"../scatter/calc":1188,"../scatter/colorscale_calc":1190,"./constants":1241,"./convert":1242,"./scene_update":1250,"@plotly/point-cluster":57}],1241:[function(t,e,r){"use strict";e.exports={TOO_MANY_POINTS:1e5,SYMBOL_SDF_SIZE:200,SYMBOL_SIZE:20,SYMBOL_STROKE:1,DOT_RE:/-dot/,OPEN_RE:/-open/,DASHES:{solid:[1],dot:[1,1],dash:[4,1],longdash:[8,1],dashdot:[4,1,1,1],longdashdot:[8,1,1,1]}}},{}],1242:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("svg-path-sdf"),a=t("color-normalize"),o=t("../../registry"),s=t("../../lib"),l=t("../../components/drawing"),c=t("../../plots/cartesian/axis_ids"),u=t("../../lib/gl_format_color").formatColor,f=t("../scatter/subtypes"),h=t("../scatter/make_bubble_size_func"),p=t("./helpers"),d=t("./constants"),g=t("../../constants/interactions").DESELECTDIM,m={start:1,left:1,end:-1,right:-1,middle:0,center:0,bottom:1,top:-1},v=t("../../components/fx/helpers").appendArrayPointValue;function y(t,e){var r,i=t._fullLayout,a=e._length,o=e.textfont,l=e.textposition,c=Array.isArray(l)?l:[l],u=o.color,f=o.size,h=o.family,p={},d=e.texttemplate;if(d){p.text=[];var g=i._d3locale,m=Array.isArray(d),y=m?Math.min(d.length,a):a,x=m?function(t){return d[t]}:function(){return d};for(r=0;rd.TOO_MANY_POINTS||f.hasMarkers(e)?"rect":"round";if(c&&e.connectgaps){var h=n[0],p=n[1];for(i=0;i1?l[i]:l[0]:l,d=Array.isArray(c)?c.length>1?c[i]:c[0]:c,g=m[p],v=m[d],y=u?u/.8+1:0,x=-v*y-.5*v;o.offset[i]=[g*y/h,x/h]}}return o}}},{"../../components/drawing":665,"../../components/fx/helpers":679,"../../constants/interactions":752,"../../lib":778,"../../lib/gl_format_color":774,"../../plots/cartesian/axis_ids":831,"../../registry":911,"../scatter/make_bubble_size_func":1204,"../scatter/subtypes":1212,"./constants":1241,"./helpers":1246,"color-normalize":125,"fast-isnumeric":241,"svg-path-sdf":574}],1243:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry"),a=t("./helpers"),o=t("./attributes"),s=t("../scatter/constants"),l=t("../scatter/subtypes"),c=t("../scatter/xy_defaults"),u=t("../scatter/period_defaults"),f=t("../scatter/marker_defaults"),h=t("../scatter/line_defaults"),p=t("../scatter/fillcolor_defaults"),d=t("../scatter/text_defaults");e.exports=function(t,e,r,g){function m(r,i){return n.coerce(t,e,o,r,i)}var v=!!t.marker&&a.isOpenSymbol(t.marker.symbol),y=l.isBubble(t),x=c(t,e,g,m);if(x){u(t,e,g,m);var b=x100},r.isDotSymbol=function(t){return"string"==typeof t?n.DOT_RE.test(t):t>200}},{"./constants":1241}],1247:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib"),a=t("../scatter/get_trace_color");function o(t,e,r,o){var s=t.xa,l=t.ya,c=t.distance,u=t.dxy,f=t.index,h={pointNumber:f,x:e[f],y:r[f]};h.tx=Array.isArray(o.text)?o.text[f]:o.text,h.htx=Array.isArray(o.hovertext)?o.hovertext[f]:o.hovertext,h.data=Array.isArray(o.customdata)?o.customdata[f]:o.customdata,h.tp=Array.isArray(o.textposition)?o.textposition[f]:o.textposition;var p=o.textfont;p&&(h.ts=i.isArrayOrTypedArray(p.size)?p.size[f]:p.size,h.tc=Array.isArray(p.color)?p.color[f]:p.color,h.tf=Array.isArray(p.family)?p.family[f]:p.family);var d=o.marker;d&&(h.ms=i.isArrayOrTypedArray(d.size)?d.size[f]:d.size,h.mo=i.isArrayOrTypedArray(d.opacity)?d.opacity[f]:d.opacity,h.mx=i.isArrayOrTypedArray(d.symbol)?d.symbol[f]:d.symbol,h.mc=i.isArrayOrTypedArray(d.color)?d.color[f]:d.color);var g=d&&d.line;g&&(h.mlc=Array.isArray(g.color)?g.color[f]:g.color,h.mlw=i.isArrayOrTypedArray(g.width)?g.width[f]:g.width);var m=d&&d.gradient;m&&"none"!==m.type&&(h.mgt=Array.isArray(m.type)?m.type[f]:m.type,h.mgc=Array.isArray(m.color)?m.color[f]:m.color);var v=s.c2p(h.x,!0),y=l.c2p(h.y,!0),x=h.mrc||1,b=o.hoverlabel;b&&(h.hbg=Array.isArray(b.bgcolor)?b.bgcolor[f]:b.bgcolor,h.hbc=Array.isArray(b.bordercolor)?b.bordercolor[f]:b.bordercolor,h.hts=i.isArrayOrTypedArray(b.font.size)?b.font.size[f]:b.font.size,h.htc=Array.isArray(b.font.color)?b.font.color[f]:b.font.color,h.htf=Array.isArray(b.font.family)?b.font.family[f]:b.font.family,h.hnl=i.isArrayOrTypedArray(b.namelength)?b.namelength[f]:b.namelength);var _=o.hoverinfo;_&&(h.hi=Array.isArray(_)?_[f]:_);var w=o.hovertemplate;w&&(h.ht=Array.isArray(w)?w[f]:w);var T={};T[t.index]=h;var k=o._origX,M=o._origY,A=i.extendFlat({},t,{color:a(o,h),x0:v-x,x1:v+x,xLabelVal:k?k[f]:h.x,y0:y-x,y1:y+x,yLabelVal:M?M[f]:h.y,cd:T,distance:c,spikeDistance:u,hovertemplate:h.ht});return h.htx?A.text=h.htx:h.tx?A.text=h.tx:o.text&&(A.text=o.text),i.fillText(h,o,A),n.getComponentMethod("errorbars","hoverInfo")(h,o,A),A}e.exports={hoverPoints:function(t,e,r,n){var i,a,s,l,c,u,f,h,p,d=t.cd,g=d[0].t,m=d[0].trace,v=t.xa,y=t.ya,x=g.x,b=g.y,_=v.c2p(e),w=y.c2p(r),T=t.distance;if(g.tree){var k=v.p2c(_-T),M=v.p2c(_+T),A=y.p2c(w-T),S=y.p2c(w+T);i="x"===n?g.tree.range(Math.min(k,M),Math.min(y._rl[0],y._rl[1]),Math.max(k,M),Math.max(y._rl[0],y._rl[1])):g.tree.range(Math.min(k,M),Math.min(A,S),Math.max(k,M),Math.max(A,S))}else i=g.ids;var E=T;if("x"===n)for(c=0;c-1;c--)s=x[i[c]],l=b[i[c]],u=v.c2p(s)-_,f=y.c2p(l)-w,(h=Math.sqrt(u*u+f*f))v.glText.length){var w=b-v.glText.length;for(d=0;dr&&(isNaN(e[n])||isNaN(e[n+1]));)n-=2;t.positions=e.slice(r,n+2)}return t})),v.line2d.update(v.lineOptions)),v.error2d){var k=(v.errorXOptions||[]).concat(v.errorYOptions||[]);v.error2d.update(k)}v.scatter2d&&v.scatter2d.update(v.markerOptions),v.fillOrder=s.repeat(null,b),v.fill2d&&(v.fillOptions=v.fillOptions.map((function(t,e){var n=r[e];if(t&&n&&n[0]&&n[0].trace){var i,a,o=n[0],s=o.trace,l=o.t,c=v.lineOptions[e],u=[];s._ownfill&&u.push(e),s._nexttrace&&u.push(e+1),u.length&&(v.fillOrder[e]=u);var f,h,p=[],d=c&&c.positions||l.positions;if("tozeroy"===s.fill){for(f=0;ff&&isNaN(d[h+1]);)h-=2;0!==d[f+1]&&(p=[d[f],0]),p=p.concat(d.slice(f,h+2)),0!==d[h+1]&&(p=p.concat([d[h],0]))}else if("tozerox"===s.fill){for(f=0;ff&&isNaN(d[h]);)h-=2;0!==d[f]&&(p=[0,d[f+1]]),p=p.concat(d.slice(f,h+2)),0!==d[h]&&(p=p.concat([0,d[h+1]]))}else if("toself"===s.fill||"tonext"===s.fill){for(p=[],i=0,a=0;a-1;for(d=0;d=0?Math.floor((e+180)/360):Math.ceil((e-180)/360)),d=e-p;if(n.getClosest(l,(function(t){var e=t.lonlat;if(e[0]===s)return 1/0;var n=i.modHalf(e[0],360),a=e[1],o=h.project([n,a]),l=o.x-u.c2p([d,a]),c=o.y-f.c2p([n,r]),p=Math.max(3,t.mrc||0);return Math.max(Math.sqrt(l*l+c*c)-p,1-3/p)}),t),!1!==t.index){var g=l[t.index],m=g.lonlat,v=[i.modHalf(m[0],360)+p,m[1]],y=u.c2p(v),x=f.c2p(v),b=g.mrc||1;t.x0=y-b,t.x1=y+b,t.y0=x-b,t.y1=x+b;var _={};_[c.subplot]={_subplot:h};var w=c._module.formatLabels(g,c,_);return t.lonLabel=w.lonLabel,t.latLabel=w.latLabel,t.color=a(c,g),t.extraText=function(t,e,r){if(t.hovertemplate)return;var n=(e.hi||t.hoverinfo).split("+"),i=-1!==n.indexOf("all"),a=-1!==n.indexOf("lon"),s=-1!==n.indexOf("lat"),l=e.lonlat,c=[];function u(t){return t+"\xb0"}i||a&&s?c.push("("+u(l[0])+", "+u(l[1])+")"):a?c.push(r.lon+u(l[0])):s&&c.push(r.lat+u(l[1]));(i||-1!==n.indexOf("text"))&&o(e,t,c);return c.join("
")}(c,g,l[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}}},{"../../components/fx":683,"../../constants/numerical":753,"../../lib":778,"../scatter/get_trace_color":1197}],1258:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("../scattergeo/calc"),plot:t("./plot"),hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("./select"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.update(e)},moduleType:"trace",name:"scattermapbox",basePlotModule:t("../../plots/mapbox"),categories:["mapbox","gl","symbols","showLegend","scatter-like"],meta:{}}},{"../../plots/mapbox":885,"../scatter/marker_colorbar":1205,"../scattergeo/calc":1230,"./attributes":1252,"./defaults":1254,"./event_data":1255,"./format_labels":1256,"./hover":1257,"./plot":1259,"./select":1260}],1259:[function(t,e,r){"use strict";var n=t("./convert"),i=t("../../plots/mapbox/constants").traceLayerPrefix,a=["fill","line","circle","symbol"];function o(t,e){this.type="scattermapbox",this.subplot=t,this.uid=e,this.sourceIds={fill:"source-"+e+"-fill",line:"source-"+e+"-line",circle:"source-"+e+"-circle",symbol:"source-"+e+"-symbol"},this.layerIds={fill:i+e+"-fill",line:i+e+"-line",circle:i+e+"-circle",symbol:i+e+"-symbol"},this.below=null}var s=o.prototype;s.addSource=function(t,e){this.subplot.map.addSource(this.sourceIds[t],{type:"geojson",data:e.geojson})},s.setSourceData=function(t,e){this.subplot.map.getSource(this.sourceIds[t]).setData(e.geojson)},s.addLayer=function(t,e,r){this.subplot.addLayer({type:t,id:this.layerIds[t],source:this.sourceIds[t],layout:e.layout,paint:e.paint},r)},s.update=function(t){var e,r,i,o=this.subplot,s=o.map,l=n(o.gd,t),c=o.belowLookup["trace-"+this.uid];if(c!==this.below){for(e=a.length-1;e>=0;e--)r=a[e],s.removeLayer(this.layerIds[r]);for(e=0;e=0;e--){var r=a[e];t.removeLayer(this.layerIds[r]),t.removeSource(this.sourceIds[r])}},e.exports=function(t,e){for(var r=e[0].trace,i=new o(t,r.uid),s=n(t.gd,e),l=i.below=t.belowLookup["trace-"+r.uid],c=0;c")}}e.exports={hoverPoints:function(t,e,r,a){var o=n(t,e,r,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index)return o;var l=t.subplot,c=s.cd[s.index],u=s.trace;if(l.isPtInside(c))return s.xLabelVal=void 0,s.yLabelVal=void 0,i(c,u,l,s),s.hovertemplate=u.hovertemplate,o}},makeHoverPointText:i}},{"../scatter/hover":1198}],1266:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"scatterpolar",basePlotModule:t("../../plots/polar"),categories:["polar","symbols","showLegend","scatter-like"],attributes:t("./attributes"),supplyDefaults:t("./defaults").supplyDefaults,colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),plot:t("./plot"),style:t("../scatter/style").style,styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover").hoverPoints,selectPoints:t("../scatter/select"),meta:{}}},{"../../plots/polar":894,"../scatter/marker_colorbar":1205,"../scatter/select":1209,"../scatter/style":1211,"./attributes":1261,"./calc":1262,"./defaults":1263,"./format_labels":1264,"./hover":1265,"./plot":1267}],1267:[function(t,e,r){"use strict";var n=t("../scatter/plot"),i=t("../../constants/numerical").BADNUM;e.exports=function(t,e,r){for(var a=e.layers.frontplot.select("g.scatterlayer"),o={xaxis:e.xaxis,yaxis:e.yaxis,plot:e.framework,layerClipId:e._hasClipOnAxisFalse?e.clipIds.forTraces:null},s=e.radialAxis,l=e.angularAxis,c=0;c=c&&(y.marker.cluster=d.tree),y.marker&&(y.markerSel.positions=y.markerUnsel.positions=y.marker.positions=_),y.line&&_.length>1&&l.extendFlat(y.line,s.linePositions(t,p,_)),y.text&&(l.extendFlat(y.text,{positions:_},s.textPosition(t,p,y.text,y.marker)),l.extendFlat(y.textSel,{positions:_},s.textPosition(t,p,y.text,y.markerSel)),l.extendFlat(y.textUnsel,{positions:_},s.textPosition(t,p,y.text,y.markerUnsel))),y.fill&&!h.fill2d&&(h.fill2d=!0),y.marker&&!h.scatter2d&&(h.scatter2d=!0),y.line&&!h.line2d&&(h.line2d=!0),y.text&&!h.glText&&(h.glText=!0),h.lineOptions.push(y.line),h.fillOptions.push(y.fill),h.markerOptions.push(y.marker),h.markerSelectedOptions.push(y.markerSel),h.markerUnselectedOptions.push(y.markerUnsel),h.textOptions.push(y.text),h.textSelectedOptions.push(y.textSel),h.textUnselectedOptions.push(y.textUnsel),h.selectBatch.push([]),h.unselectBatch.push([]),d.x=w,d.y=T,d.rawx=w,d.rawy=T,d.r=m,d.theta=v,d.positions=_,d._scene=h,d.index=h.count,h.count++}})),a(t,e,r)}}},{"../../lib":778,"../scattergl/constants":1241,"../scattergl/convert":1242,"../scattergl/plot":1249,"../scattergl/scene_update":1250,"@plotly/point-cluster":57,"fast-isnumeric":241}],1275:[function(t,e,r){"use strict";var n=t("../../plots/template_attributes").hovertemplateAttrs,i=t("../../plots/template_attributes").texttemplateAttrs,a=t("../scatter/attributes"),o=t("../../plots/attributes"),s=t("../../components/colorscale/attributes"),l=t("../../components/drawing/attributes").dash,c=t("../../lib/extend").extendFlat,u=a.marker,f=a.line,h=u.line;e.exports={a:{valType:"data_array",editType:"calc"},b:{valType:"data_array",editType:"calc"},c:{valType:"data_array",editType:"calc"},sum:{valType:"number",dflt:0,min:0,editType:"calc"},mode:c({},a.mode,{dflt:"markers"}),text:c({},a.text,{}),texttemplate:i({editType:"plot"},{keys:["a","b","c","text"]}),hovertext:c({},a.hovertext,{}),line:{color:f.color,width:f.width,dash:l,shape:c({},f.shape,{values:["linear","spline"]}),smoothing:f.smoothing,editType:"calc"},connectgaps:a.connectgaps,cliponaxis:a.cliponaxis,fill:c({},a.fill,{values:["none","toself","tonext"],dflt:"none"}),fillcolor:a.fillcolor,marker:c({symbol:u.symbol,opacity:u.opacity,maxdisplayed:u.maxdisplayed,size:u.size,sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,line:c({width:h.width,editType:"calc"},s("marker.line")),gradient:u.gradient,editType:"calc"},s("marker")),textfont:a.textfont,textposition:a.textposition,selected:a.selected,unselected:a.unselected,hoverinfo:c({},o.hoverinfo,{flags:["a","b","c","text","name"]}),hoveron:a.hoveron,hovertemplate:n()}},{"../../components/colorscale/attributes":650,"../../components/drawing/attributes":664,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../scatter/attributes":1187}],1276:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../scatter/colorscale_calc"),a=t("../scatter/arrays_to_calcdata"),o=t("../scatter/calc_selection"),s=t("../scatter/calc").calcMarkerSize,l=["a","b","c"],c={a:["b","c"],b:["a","c"],c:["a","b"]};e.exports=function(t,e){var r,u,f,h,p,d,g=t._fullLayout[e.subplot].sum,m=e.sum||g,v={a:e.a,b:e.b,c:e.c};for(r=0;r"),o.hovertemplate=h.hovertemplate,a}function x(t,e){v.push(t._hovertitle+": "+e)}}},{"../scatter/hover":1198}],1281:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),plot:t("./plot"),style:t("../scatter/style").style,styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../scatter/select"),eventData:t("./event_data"),moduleType:"trace",name:"scatterternary",basePlotModule:t("../../plots/ternary"),categories:["ternary","symbols","showLegend","scatter-like"],meta:{}}},{"../../plots/ternary":907,"../scatter/marker_colorbar":1205,"../scatter/select":1209,"../scatter/style":1211,"./attributes":1275,"./calc":1276,"./defaults":1277,"./event_data":1278,"./format_labels":1279,"./hover":1280,"./plot":1282}],1282:[function(t,e,r){"use strict";var n=t("../scatter/plot");e.exports=function(t,e,r){var i=e.plotContainer;i.select(".scatterlayer").selectAll("*").remove();var a={xaxis:e.xaxis,yaxis:e.yaxis,plot:i,layerClipId:e._hasClipOnAxisFalse?e.clipIdRelative:null},o=e.layers.frontplot.select("g.scatterlayer");n(t,a,r,o)}},{"../scatter/plot":1208}],1283:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../../components/colorscale/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../scattergl/attributes"),s=t("../../plots/cartesian/constants").idRegex,l=t("../../plot_api/plot_template").templatedArray,c=t("../../lib/extend").extendFlat,u=n.marker,f=u.line,h=c(i("marker.line",{editTypeOverride:"calc"}),{width:c({},f.width,{editType:"calc"}),editType:"calc"}),p=c(i("marker"),{symbol:u.symbol,size:c({},u.size,{editType:"markerSize"}),sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,opacity:u.opacity,colorbar:u.colorbar,line:h,editType:"calc"});function d(t){return{valType:"info_array",freeLength:!0,editType:"calc",items:{valType:"subplotid",regex:s[t],editType:"plot"}}}p.color.editType=p.cmin.editType=p.cmax.editType="style",e.exports={dimensions:l("dimension",{visible:{valType:"boolean",dflt:!0,editType:"calc"},label:{valType:"string",editType:"calc"},values:{valType:"data_array",editType:"calc+clearAxisTypes"},axis:{type:{valType:"enumerated",values:["linear","log","date","category"],editType:"calc+clearAxisTypes"},matches:{valType:"boolean",dflt:!1,editType:"calc"},editType:"calc+clearAxisTypes"},editType:"calc+clearAxisTypes"}),text:c({},o.text,{}),hovertext:c({},o.hovertext,{}),hovertemplate:a(),marker:p,xaxes:d("x"),yaxes:d("y"),diagonal:{visible:{valType:"boolean",dflt:!0,editType:"calc"},editType:"calc"},showupperhalf:{valType:"boolean",dflt:!0,editType:"calc"},showlowerhalf:{valType:"boolean",dflt:!0,editType:"calc"},selected:{marker:o.selected.marker,editType:"calc"},unselected:{marker:o.unselected.marker,editType:"calc"},opacity:o.opacity}},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plot_api/plot_template":817,"../../plots/cartesian/constants":834,"../../plots/template_attributes":906,"../scatter/attributes":1187,"../scattergl/attributes":1239}],1284:[function(t,e,r){"use strict";var n=t("regl-line2d"),i=t("../../registry"),a=t("../../lib/prepare_regl"),o=t("../../plots/get_data").getModuleCalcData,s=t("../../plots/cartesian"),l=t("../../plots/cartesian/axis_ids").getFromId,c=t("../../plots/cartesian/axes").shouldShowZeroLine;function u(t,e,r){for(var n=r.matrixOptions.data.length,i=e._visibleDims,a=r.viewOpts.ranges=new Array(n),o=0;oh?2*(b.sizeAvg||Math.max(b.size,3)):a(e,x),p=0;pa&&l||i-1,A=!0;if(o(x)||!!p.selectedpoints||M){var S=p._length;if(p.selectedpoints){g.selectBatch=p.selectedpoints;var E=p.selectedpoints,C={};for(l=0;l1&&(u=g[y-1],h=m[y-1],d=v[y-1]),e=0;eu?"-":"+")+"x")).replace("y",(f>h?"-":"+")+"y")).replace("z",(p>d?"-":"+")+"z");var C=function(){y=0,A=[],S=[],E=[]};(!y||y2?t.slice(1,e-1):2===e?[(t[0]+t[1])/2]:t}function p(t){var e=t.length;return 1===e?[.5,.5]:[t[1]-t[0],t[e-1]-t[e-2]]}function d(t,e){var r=t.fullSceneLayout,i=t.dataScale,u=e._len,f={};function d(t,e){var n=r[e],o=i[c[e]];return a.simpleMap(t,(function(t){return n.d2l(t)*o}))}if(f.vectors=l(d(e._u,"xaxis"),d(e._v,"yaxis"),d(e._w,"zaxis"),u),!u)return{positions:[],cells:[]};var g=d(e._Xs,"xaxis"),m=d(e._Ys,"yaxis"),v=d(e._Zs,"zaxis");if(f.meshgrid=[g,m,v],f.gridFill=e._gridFill,e._slen)f.startingPositions=l(d(e._startsX,"xaxis"),d(e._startsY,"yaxis"),d(e._startsZ,"zaxis"));else{for(var y=m[0],x=h(g),b=h(v),_=new Array(x.length*b.length),w=0,T=0;T=0};v?(r=Math.min(m.length,x.length),l=function(t){return M(m[t])&&A(t)},f=function(t){return String(m[t])}):(r=Math.min(y.length,x.length),l=function(t){return M(y[t])&&A(t)},f=function(t){return String(y[t])}),_&&(r=Math.min(r,b.length));for(var S=0;S1){for(var I=a.randstr(),P=0;P"),name:k||z("name")?l.name:void 0,color:T("hoverlabel.bgcolor")||y.color,borderColor:T("hoverlabel.bordercolor"),fontFamily:T("hoverlabel.font.family"),fontSize:T("hoverlabel.font.size"),fontColor:T("hoverlabel.font.color"),nameLength:T("hoverlabel.namelength"),textAlign:T("hoverlabel.align"),hovertemplate:k,hovertemplateLabels:L,eventData:[f(i,l,h.eventDataKeys)]};m&&(R.x0=S-i.rInscribed*i.rpx1,R.x1=S+i.rInscribed*i.rpx1,R.idealAlign=i.pxmid[0]<0?"left":"right"),v&&(R.x=S,R.idealAlign=S<0?"left":"right"),o.loneHover(R,{container:a._hoverlayer.node(),outerContainer:a._paper.node(),gd:r}),d._hasHoverLabel=!0}if(v){var F=t.select("path.surface");h.styleOne(F,i,l,{hovered:!0})}d._hasHoverEvent=!0,r.emit("plotly_hover",{points:[f(i,l,h.eventDataKeys)],event:n.event})}})),t.on("mouseout",(function(e){var i=r._fullLayout,a=r._fullData[d.index],s=n.select(this).datum();if(d._hasHoverEvent&&(e.originalEvent=n.event,r.emit("plotly_unhover",{points:[f(s,a,h.eventDataKeys)],event:n.event}),d._hasHoverEvent=!1),d._hasHoverLabel&&(o.loneUnhover(i._hoverlayer.node()),d._hasHoverLabel=!1),v){var l=t.select("path.surface");h.styleOne(l,s,a,{hovered:!1})}})),t.on("click",(function(t){var e=r._fullLayout,a=r._fullData[d.index],s=m&&(c.isHierarchyRoot(t)||c.isLeaf(t)),u=c.getPtId(t),p=c.isEntry(t)?c.findEntryWithChild(g,u):c.findEntryWithLevel(g,u),v=c.getPtId(p),y={points:[f(t,a,h.eventDataKeys)],event:n.event};s||(y.nextLevel=v);var x=l.triggerHandler(r,"plotly_"+d.type+"click",y);if(!1!==x&&e.hovermode&&(r._hoverdata=[f(t,a,h.eventDataKeys)],o.click(r,n.event)),!s&&!1!==x&&!r._dragging&&!r._transitioning){i.call("_storeDirectGUIEdit",a,e._tracePreGUI[a.uid],{level:a.level});var b={data:[{level:v}],traces:[d.index]},_={frame:{redraw:!1,duration:h.transitionTime},transition:{duration:h.transitionTime,easing:h.transitionEasing},mode:"immediate",fromcurrent:!0};o.loneUnhover(e._hoverlayer.node()),i.call("animate",r,b,_)}}))}},{"../../components/fx":683,"../../components/fx/helpers":679,"../../lib":778,"../../lib/events":767,"../../registry":911,"../pie/helpers":1166,"./helpers":1305,d3:169}],1305:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/color"),a=t("../../lib/setcursor"),o=t("../pie/helpers");function s(t){return t.data.data.pid}r.findEntryWithLevel=function(t,e){var n;return e&&t.eachAfter((function(t){if(r.getPtId(t)===e)return n=t.copy()})),n||t},r.findEntryWithChild=function(t,e){var n;return t.eachAfter((function(t){for(var i=t.children||[],a=0;a0)},r.getMaxDepth=function(t){return t.maxdepth>=0?t.maxdepth:1/0},r.isHeader=function(t,e){return!(r.isLeaf(t)||t.depth===e._maxDepth-1)},r.getParent=function(t,e){return r.findEntryWithLevel(t,s(e))},r.listPath=function(t,e){var n=t.parent;if(!n)return[];var i=e?[n.data[e]]:[n];return r.listPath(n,e).concat(i)},r.getPath=function(t){return r.listPath(t,"label").join("/")+"/"},r.formatValue=o.formatPieValue,r.formatPercent=function(t,e){var r=n.formatPercent(t,0);return"0%"===r&&(r=o.formatPiePercent(t,e)),r}},{"../../components/color":643,"../../lib":778,"../../lib/setcursor":799,"../pie/helpers":1166}],1306:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"sunburst",basePlotModule:t("./base_plot"),categories:[],animatable:!0,attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot").plot,style:t("./style").style,colorbar:t("../scatter/marker_colorbar"),meta:{}}},{"../scatter/marker_colorbar":1205,"./attributes":1299,"./base_plot":1300,"./calc":1301,"./defaults":1303,"./layout_attributes":1307,"./layout_defaults":1308,"./plot":1309,"./style":1310}],1307:[function(t,e,r){"use strict";e.exports={sunburstcolorway:{valType:"colorlist",editType:"calc"},extendsunburstcolors:{valType:"boolean",dflt:!0,editType:"calc"}}},{}],1308:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r("sunburstcolorway",e.colorway),r("extendsunburstcolors")}},{"../../lib":778,"./layout_attributes":1307}],1309:[function(t,e,r){"use strict";var n=t("d3"),i=t("d3-hierarchy"),a=t("../../components/drawing"),o=t("../../lib"),s=t("../../lib/svg_text_utils"),l=t("../bar/uniform_text"),c=l.recordMinTextSize,u=l.clearMinTextSize,f=t("../pie/plot"),h=t("../pie/helpers").getRotationAngle,p=f.computeTransform,d=f.transformInsideText,g=t("./style").styleOne,m=t("../bar/style").resizeText,v=t("./fx"),y=t("./constants"),x=t("./helpers");function b(t,e,l,u){var f=t._fullLayout,m=!f.uniformtext.mode&&x.hasTransition(u),b=n.select(l).selectAll("g.slice"),w=e[0],T=w.trace,k=w.hierarchy,M=x.findEntryWithLevel(k,T.level),A=x.getMaxDepth(T),S=f._size,E=T.domain,C=S.w*(E.x[1]-E.x[0]),L=S.h*(E.y[1]-E.y[0]),I=.5*Math.min(C,L),P=w.cx=S.l+S.w*(E.x[1]+E.x[0])/2,z=w.cy=S.t+S.h*(1-E.y[0])-L/2;if(!M)return b.remove();var O=null,D={};m&&b.each((function(t){D[x.getPtId(t)]={rpx0:t.rpx0,rpx1:t.rpx1,x0:t.x0,x1:t.x1,transform:t.transform},!O&&x.isEntry(t)&&(O=t)}));var R=function(t){return i.partition().size([2*Math.PI,t.height+1])(t)}(M).descendants(),F=M.height+1,B=0,N=A;w.hasMultipleRoots&&x.isHierarchyRoot(M)&&(R=R.slice(1),F-=1,B=1,N+=1),R=R.filter((function(t){return t.y1<=N}));var j=h(T.rotation);j&&R.forEach((function(t){t.x0+=j,t.x1+=j}));var U=Math.min(F,A),V=function(t){return(t-B)/U*I},q=function(t,e){return[t*Math.cos(e),-t*Math.sin(e)]},H=function(t){return o.pathAnnulus(t.rpx0,t.rpx1,t.x0,t.x1,P,z)},G=function(t){return P+_(t)[0]*(t.transform.rCenter||0)+(t.transform.x||0)},Y=function(t){return z+_(t)[1]*(t.transform.rCenter||0)+(t.transform.y||0)};(b=b.data(R,x.getPtId)).enter().append("g").classed("slice",!0),m?b.exit().transition().each((function(){var t=n.select(this);t.select("path.surface").transition().attrTween("d",(function(t){var e=function(t){var e,r=x.getPtId(t),i=D[r],a=D[x.getPtId(M)];if(a){var o=(t.x1>a.x1?2*Math.PI:0)+j;e=t.rpx1W?2*Math.PI:0)+j;e={x0:a,x1:a}}else e={rpx0:I,rpx1:I},o.extendFlat(e,J(t));else e={rpx0:0,rpx1:0};else e={x0:j,x1:j};return n.interpolate(e,i)}(t);return function(t){return H(e(t))}})):u.attr("d",H),l.call(v,M,t,e,{eventDataKeys:y.eventDataKeys,transitionTime:y.CLICK_TRANSITION_TIME,transitionEasing:y.CLICK_TRANSITION_EASING}).call(x.setSliceCursor,t,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:t._transitioning}),u.call(g,i,T);var h=o.ensureSingle(l,"g","slicetext"),b=o.ensureSingle(h,"text","",(function(t){t.attr("data-notex",1)})),_=o.ensureUniformFontSize(t,x.determineTextFont(T,i,f.font));b.text(r.formatSliceLabel(i,M,T,e,f)).classed("slicetext",!0).attr("text-anchor","middle").call(a.font,_).call(s.convertToTspans,t);var k=a.bBox(b.node());i.transform=d(k,i,w),i.transform.targetX=G(i),i.transform.targetY=Y(i);var A=function(t,e){var r=t.transform;return p(r,e),r.fontSize=_.size,c(T.type,r,f),o.getTextTransform(r)};m?b.transition().attrTween("transform",(function(t){var e=function(t){var e,r=D[x.getPtId(t)],i=t.transform;if(r)e=r;else if(e={rpx1:t.rpx1,transform:{textPosAngle:i.textPosAngle,scale:0,rotate:i.rotate,rCenter:i.rCenter,x:i.x,y:i.y}},O)if(t.parent)if(W){var a=t.x1>W?2*Math.PI:0;e.x0=e.x1=a}else o.extendFlat(e,J(t));else e.x0=e.x1=j;else e.x0=e.x1=j;var s=n.interpolate(e.transform.textPosAngle,t.transform.textPosAngle),l=n.interpolate(e.rpx1,t.rpx1),u=n.interpolate(e.x0,t.x0),h=n.interpolate(e.x1,t.x1),p=n.interpolate(e.transform.scale,i.scale),d=n.interpolate(e.transform.rotate,i.rotate),g=0===i.rCenter?3:0===e.transform.rCenter?1/3:1,m=n.interpolate(e.transform.rCenter,i.rCenter);return function(t){var e=l(t),r=u(t),n=h(t),a=function(t){return m(Math.pow(t,g))}(t),o={pxmid:q(e,(r+n)/2),rpx1:e,transform:{textPosAngle:s(t),rCenter:a,x:i.x,y:i.y}};return c(T.type,i,f),{transform:{targetX:G(o),targetY:Y(o),scale:p(t),rotate:d(t),rCenter:a}}}}(t);return function(t){return A(e(t),k)}})):b.attr("transform",A(i,k))}))}function _(t){return e=t.rpx1,r=t.transform.textPosAngle,[e*Math.sin(r),-e*Math.cos(r)];var e,r}r.plot=function(t,e,r,i){var a,o,s=t._fullLayout,l=s._sunburstlayer,c=!r,f=!s.uniformtext.mode&&x.hasTransition(r);(u("sunburst",s),(a=l.selectAll("g.trace.sunburst").data(e,(function(t){return t[0].trace.uid}))).enter().append("g").classed("trace",!0).classed("sunburst",!0).attr("stroke-linejoin","round"),a.order(),f)?(i&&(o=i()),n.transition().duration(r.duration).ease(r.easing).each("end",(function(){o&&o()})).each("interrupt",(function(){o&&o()})).each((function(){l.selectAll("g.trace").each((function(e){b(t,e,this,r)}))}))):(a.each((function(e){b(t,e,this,r)})),s.uniformtext.mode&&m(t,s._sunburstlayer.selectAll(".trace"),"sunburst"));c&&a.exit().remove()},r.formatSliceLabel=function(t,e,r,n,i){var a=r.texttemplate,s=r.textinfo;if(!(a||s&&"none"!==s))return"";var l=i.separators,c=n[0],u=t.data.data,f=c.hierarchy,h=x.isHierarchyRoot(t),p=x.getParent(f,t),d=x.getValue(t);if(!a){var g,m=s.split("+"),v=function(t){return-1!==m.indexOf(t)},y=[];if(v("label")&&u.label&&y.push(u.label),u.hasOwnProperty("v")&&v("value")&&y.push(x.formatValue(u.v,l)),!h){v("current path")&&y.push(x.getPath(t.data));var b=0;v("percent parent")&&b++,v("percent entry")&&b++,v("percent root")&&b++;var _=b>1;if(b){var w,T=function(t){g=x.formatPercent(w,l),_&&(g+=" of "+t),y.push(g)};v("percent parent")&&!h&&(w=d/x.getValue(p),T("parent")),v("percent entry")&&(w=d/x.getValue(e),T("entry")),v("percent root")&&(w=d/x.getValue(f),T("root"))}}return v("text")&&(g=o.castOption(r,u.i,"text"),o.isValidTextValue(g)&&y.push(g)),y.join("
")}var k=o.castOption(r,u.i,"texttemplate");if(!k)return"";var M={};u.label&&(M.label=u.label),u.hasOwnProperty("v")&&(M.value=u.v,M.valueLabel=x.formatValue(u.v,l)),M.currentPath=x.getPath(t.data),h||(M.percentParent=d/x.getValue(p),M.percentParentLabel=x.formatPercent(M.percentParent,l),M.parent=x.getPtLabel(p)),M.percentEntry=d/x.getValue(e),M.percentEntryLabel=x.formatPercent(M.percentEntry,l),M.entry=x.getPtLabel(e),M.percentRoot=d/x.getValue(f),M.percentRootLabel=x.formatPercent(M.percentRoot,l),M.root=x.getPtLabel(f),u.hasOwnProperty("color")&&(M.color=u.color);var A=o.castOption(r,u.i,"text");return(o.isValidTextValue(A)||""===A)&&(M.text=A),M.customdata=o.castOption(r,u.i,"customdata"),o.texttemplateString(k,M,i._d3locale,M,r._meta||{})}},{"../../components/drawing":665,"../../lib":778,"../../lib/svg_text_utils":803,"../bar/style":935,"../bar/uniform_text":937,"../pie/helpers":1166,"../pie/plot":1170,"./constants":1302,"./fx":1304,"./helpers":1305,"./style":1310,d3:169,"d3-hierarchy":161}],1310:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/color"),a=t("../../lib"),o=t("../bar/uniform_text").resizeText;function s(t,e,r){var n=e.data.data,o=!e.children,s=n.i,l=a.castOption(r,s,"marker.line.color")||i.defaultLine,c=a.castOption(r,s,"marker.line.width")||0;t.style("stroke-width",c).call(i.fill,n.color).call(i.stroke,l).style("opacity",o?r.leaf.opacity:null)}e.exports={style:function(t){var e=t._fullLayout._sunburstlayer.selectAll(".trace");o(t,e,"sunburst"),e.each((function(t){var e=n.select(this),r=t[0].trace;e.style("opacity",r.opacity),e.selectAll("path.surface").each((function(t){n.select(this).call(s,t,r)}))}))},styleOne:s}},{"../../components/color":643,"../../lib":778,"../bar/uniform_text":937,d3:169}],1311:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("../../components/colorscale/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat,l=t("../../plot_api/edit_types").overrideAll;function c(t){return{show:{valType:"boolean",dflt:!1},start:{valType:"number",dflt:null,editType:"plot"},end:{valType:"number",dflt:null,editType:"plot"},size:{valType:"number",dflt:null,min:0,editType:"plot"},project:{x:{valType:"boolean",dflt:!1},y:{valType:"boolean",dflt:!1},z:{valType:"boolean",dflt:!1}},color:{valType:"color",dflt:n.defaultLine},usecolormap:{valType:"boolean",dflt:!1},width:{valType:"number",min:1,max:16,dflt:2},highlight:{valType:"boolean",dflt:!0},highlightcolor:{valType:"color",dflt:n.defaultLine},highlightwidth:{valType:"number",min:1,max:16,dflt:2}}}var u=e.exports=l(s({z:{valType:"data_array"},x:{valType:"data_array"},y:{valType:"data_array"},text:{valType:"string",dflt:"",arrayOk:!0},hovertext:{valType:"string",dflt:"",arrayOk:!0},hovertemplate:a(),connectgaps:{valType:"boolean",dflt:!1,editType:"calc"},surfacecolor:{valType:"data_array"}},i("",{colorAttr:"z or surfacecolor",showScaleDflt:!0,autoColorDflt:!1,editTypeOverride:"calc"}),{contours:{x:c(),y:c(),z:c()},hidesurface:{valType:"boolean",dflt:!1},lightposition:{x:{valType:"number",min:-1e5,max:1e5,dflt:10},y:{valType:"number",min:-1e5,max:1e5,dflt:1e4},z:{valType:"number",min:-1e5,max:1e5,dflt:0}},lighting:{ambient:{valType:"number",min:0,max:1,dflt:.8},diffuse:{valType:"number",min:0,max:1,dflt:.8},specular:{valType:"number",min:0,max:2,dflt:.05},roughness:{valType:"number",min:0,max:1,dflt:.5},fresnel:{valType:"number",min:0,max:5,dflt:.2}},opacity:{valType:"number",min:0,max:1,dflt:1},opacityscale:{valType:"any",editType:"calc"},_deprecated:{zauto:s({},i.zauto,{}),zmin:s({},i.zmin,{}),zmax:s({},i.zmax,{})},hoverinfo:s({},o.hoverinfo),showlegend:s({},o.showlegend,{dflt:!1})}),"calc","nested");u.x.editType=u.y.editType=u.z.editType="calc+clearAxisTypes",u.transforms=void 0},{"../../components/color":643,"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plot_api/edit_types":810,"../../plots/attributes":824,"../../plots/template_attributes":906}],1312:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc");e.exports=function(t,e){e.surfacecolor?n(t,e,{vals:e.surfacecolor,containerStr:"",cLetter:"c"}):n(t,e,{vals:e.z,containerStr:"",cLetter:"c"})}},{"../../components/colorscale/calc":651}],1313:[function(t,e,r){"use strict";var n=t("gl-surface3d"),i=t("ndarray"),a=t("ndarray-linear-interpolate").d2,o=t("../heatmap/interp2d"),s=t("../heatmap/find_empties"),l=t("../../lib").isArrayOrTypedArray,c=t("../../lib/gl_format_color").parseColorScale,u=t("../../lib/str2rgbarray"),f=t("../../components/colorscale").extractOpts;function h(t,e,r){this.scene=t,this.uid=r,this.surface=e,this.data=null,this.showContour=[!1,!1,!1],this.contourStart=[null,null,null],this.contourEnd=[null,null,null],this.contourSize=[0,0,0],this.minValues=[1/0,1/0,1/0],this.maxValues=[-1/0,-1/0,-1/0],this.dataScaleX=1,this.dataScaleY=1,this.refineData=!0,this.objectOffset=[0,0,0]}var p=h.prototype;p.getXat=function(t,e,r,n){var i=l(this.data.x)?l(this.data.x[0])?this.data.x[e][t]:this.data.x[t]:t;return void 0===r?i:n.d2l(i,0,r)},p.getYat=function(t,e,r,n){var i=l(this.data.y)?l(this.data.y[0])?this.data.y[e][t]:this.data.y[e]:e;return void 0===r?i:n.d2l(i,0,r)},p.getZat=function(t,e,r,n){var i=this.data.z[e][t];return null===i&&this.data.connectgaps&&this.data._interpolatedZ&&(i=this.data._interpolatedZ[e][t]),void 0===r?i:n.d2l(i,0,r)},p.handlePick=function(t){if(t.object===this.surface){var e=(t.data.index[0]-1)/this.dataScaleX-1,r=(t.data.index[1]-1)/this.dataScaleY-1,n=Math.max(Math.min(Math.round(e),this.data.z[0].length-1),0),i=Math.max(Math.min(Math.round(r),this.data._ylength-1),0);t.index=[n,i],t.traceCoordinate=[this.getXat(n,i),this.getYat(n,i),this.getZat(n,i)],t.dataCoordinate=[this.getXat(n,i,this.data.xcalendar,this.scene.fullSceneLayout.xaxis),this.getYat(n,i,this.data.ycalendar,this.scene.fullSceneLayout.yaxis),this.getZat(n,i,this.data.zcalendar,this.scene.fullSceneLayout.zaxis)];for(var a=0;a<3;a++){var o=t.dataCoordinate[a];null!=o&&(t.dataCoordinate[a]*=this.scene.dataScale[a])}var s=this.data.hovertext||this.data.text;return Array.isArray(s)&&s[i]&&void 0!==s[i][n]?t.textLabel=s[i][n]:t.textLabel=s||"",t.data.dataCoordinate=t.dataCoordinate.slice(),this.surface.highlight(t.data),this.scene.glplot.spikes.position=t.dataCoordinate,!0}};var d=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997,1009,1013,1019,1021,1031,1033,1039,1049,1051,1061,1063,1069,1087,1091,1093,1097,1103,1109,1117,1123,1129,1151,1153,1163,1171,1181,1187,1193,1201,1213,1217,1223,1229,1231,1237,1249,1259,1277,1279,1283,1289,1291,1297,1301,1303,1307,1319,1321,1327,1361,1367,1373,1381,1399,1409,1423,1427,1429,1433,1439,1447,1451,1453,1459,1471,1481,1483,1487,1489,1493,1499,1511,1523,1531,1543,1549,1553,1559,1567,1571,1579,1583,1597,1601,1607,1609,1613,1619,1621,1627,1637,1657,1663,1667,1669,1693,1697,1699,1709,1721,1723,1733,1741,1747,1753,1759,1777,1783,1787,1789,1801,1811,1823,1831,1847,1861,1867,1871,1873,1877,1879,1889,1901,1907,1913,1931,1933,1949,1951,1973,1979,1987,1993,1997,1999,2003,2011,2017,2027,2029,2039,2053,2063,2069,2081,2083,2087,2089,2099,2111,2113,2129,2131,2137,2141,2143,2153,2161,2179,2203,2207,2213,2221,2237,2239,2243,2251,2267,2269,2273,2281,2287,2293,2297,2309,2311,2333,2339,2341,2347,2351,2357,2371,2377,2381,2383,2389,2393,2399,2411,2417,2423,2437,2441,2447,2459,2467,2473,2477,2503,2521,2531,2539,2543,2549,2551,2557,2579,2591,2593,2609,2617,2621,2633,2647,2657,2659,2663,2671,2677,2683,2687,2689,2693,2699,2707,2711,2713,2719,2729,2731,2741,2749,2753,2767,2777,2789,2791,2797,2801,2803,2819,2833,2837,2843,2851,2857,2861,2879,2887,2897,2903,2909,2917,2927,2939,2953,2957,2963,2969,2971,2999];function g(t,e){if(t0){r=d[n];break}return r}function y(t,e){if(!(t<1||e<1)){for(var r=m(t),n=m(e),i=1,a=0;a_;)r--,r/=v(r),++r1?n:1},p.refineCoords=function(t){for(var e=this.dataScaleX,r=this.dataScaleY,n=t[0].shape[0],a=t[0].shape[1],o=0|Math.floor(t[0].shape[0]*e+1),s=0|Math.floor(t[0].shape[1]*r+1),l=1+n+1,c=1+a+1,u=i(new Float32Array(l*c),[l,c]),f=[1/e,0,0,0,1/r,0,0,0,1],h=0;h0&&null!==this.contourStart[t]&&null!==this.contourEnd[t]&&this.contourEnd[t]>this.contourStart[t]))for(i[t]=!0,e=this.contourStart[t];ea&&(this.minValues[e]=a),this.maxValues[e]",maxDimensionCount:60,overdrag:45,releaseTransitionDuration:120,releaseTransitionEase:"cubic-out",scrollbarCaptureWidth:18,scrollbarHideDelay:1e3,scrollbarHideDuration:1e3,scrollbarOffset:5,scrollbarWidth:8,transitionDuration:100,transitionEase:"cubic-out",uplift:5,wrapSpacer:" ",wrapSplitCharacter:" ",cn:{table:"table",tableControlView:"table-control-view",scrollBackground:"scroll-background",yColumn:"y-column",columnBlock:"column-block",scrollAreaClip:"scroll-area-clip",scrollAreaClipRect:"scroll-area-clip-rect",columnBoundary:"column-boundary",columnBoundaryClippath:"column-boundary-clippath",columnBoundaryRect:"column-boundary-rect",columnCells:"column-cells",columnCell:"column-cell",cellRect:"cell-rect",cellText:"cell-text",cellTextHolder:"cell-text-holder",scrollbarKit:"scrollbar-kit",scrollbar:"scrollbar",scrollbarSlider:"scrollbar-slider",scrollbarGlyph:"scrollbar-glyph",scrollbarCaptureZone:"scrollbar-capture-zone"}}},{}],1320:[function(t,e,r){"use strict";var n=t("./constants"),i=t("../../lib/extend").extendFlat,a=t("fast-isnumeric");function o(t){if(Array.isArray(t)){for(var e=0,r=0;r=e||c===t.length-1)&&(n[i]=o,o.key=l++,o.firstRowIndex=s,o.lastRowIndex=c,o={firstRowIndex:null,lastRowIndex:null,rows:[]},i+=a,s=c+1,a=0);return n}e.exports=function(t,e){var r=l(e.cells.values),p=function(t){return t.slice(e.header.values.length,t.length)},d=l(e.header.values);d.length&&!d[0].length&&(d[0]=[""],d=l(d));var g=d.concat(p(r).map((function(){return c((d[0]||[""]).length)}))),m=e.domain,v=Math.floor(t._fullLayout._size.w*(m.x[1]-m.x[0])),y=Math.floor(t._fullLayout._size.h*(m.y[1]-m.y[0])),x=e.header.values.length?g[0].map((function(){return e.header.height})):[n.emptyHeaderHeight],b=r.length?r[0].map((function(){return e.cells.height})):[],_=x.reduce(s,0),w=h(b,y-_+n.uplift),T=f(h(x,_),[]),k=f(w,T),M={},A=e._fullInput.columnorder.concat(p(r.map((function(t,e){return e})))),S=g.map((function(t,r){var n=Array.isArray(e.columnwidth)?e.columnwidth[Math.min(r,e.columnwidth.length-1)]:e.columnwidth;return a(n)?Number(n):1})),E=S.reduce(s,0);S=S.map((function(t){return t/E*v}));var C=Math.max(o(e.header.line.width),o(e.cells.line.width)),L={key:e.uid+t._context.staticPlot,translateX:m.x[0]*t._fullLayout._size.w,translateY:t._fullLayout._size.h*(1-m.y[1]),size:t._fullLayout._size,width:v,maxLineWidth:C,height:y,columnOrder:A,groupHeight:y,rowBlocks:k,headerRowBlocks:T,scrollY:0,cells:i({},e.cells,{values:r}),headerCells:i({},e.header,{values:g}),gdColumns:g.map((function(t){return t[0]})),gdColumnsOriginalOrder:g.map((function(t){return t[0]})),prevPages:[0,0],scrollbarState:{scrollbarScrollInProgress:!1},columns:g.map((function(t,e){var r=M[t];return M[t]=(r||0)+1,{key:t+"__"+M[t],label:t,specIndex:e,xIndex:A[e],xScale:u,x:void 0,calcdata:void 0,columnWidth:S[e]}}))};return L.columns.forEach((function(t){t.calcdata=L,t.x=u(t)})),L}},{"../../lib/extend":768,"./constants":1319,"fast-isnumeric":241}],1321:[function(t,e,r){"use strict";var n=t("../../lib/extend").extendFlat;r.splitToPanels=function(t){var e=[0,0],r=n({},t,{key:"header",type:"header",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!0,values:t.calcdata.headerCells.values[t.specIndex],rowBlocks:t.calcdata.headerRowBlocks,calcdata:n({},t.calcdata,{cells:t.calcdata.headerCells})});return[n({},t,{key:"cells1",type:"cells",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),n({},t,{key:"cells2",type:"cells",page:1,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),r]},r.splitToCells=function(t){var e=function(t){var e=t.rowBlocks[t.page],r=e?e.rows[0].rowIndex:0,n=e?r+e.rows.length:0;return[r,n]}(t);return(t.values||[]).slice(e[0],e[1]).map((function(r,n){return{keyWithinBlock:n+("string"==typeof r&&r.match(/[<$&> ]/)?"_keybuster_"+Math.random():""),key:e[0]+n,column:t,calcdata:t.calcdata,page:t.page,rowBlocks:t.rowBlocks,value:r}}))}},{"../../lib/extend":768}],1322:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../plots/domain").defaults;e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}a(e,o,s),s("columnwidth"),s("header.values"),s("header.format"),s("header.align"),s("header.prefix"),s("header.suffix"),s("header.height"),s("header.line.width"),s("header.line.color"),s("header.fill.color"),n.coerceFont(s,"header.font",n.extendFlat({},o.font)),function(t,e){for(var r=t.columnorder||[],n=t.header.values.length,i=r.slice(0,n),a=i.slice().sort((function(t,e){return t-e})),o=i.map((function(t){return a.indexOf(t)})),s=o.length;s/i),l=!o||s;t.mayHaveMarkup=o&&a.match(/[<&>]/);var c,u="string"==typeof(c=a)&&c.match(n.latexCheck);t.latex=u;var f,h,p=u?"":w(t.calcdata.cells.prefix,e,r)||"",d=u?"":w(t.calcdata.cells.suffix,e,r)||"",g=u?null:w(t.calcdata.cells.format,e,r)||null,m=p+(g?i.format(g)(t.value):t.value)+d;if(t.wrappingNeeded=!t.wrapped&&!l&&!u&&(f=_(m)),t.cellHeightMayIncrease=s||u||t.mayHaveMarkup||(void 0===f?_(m):f),t.needsConvertToTspans=t.mayHaveMarkup||t.wrappingNeeded||t.latex,t.wrappingNeeded){var v=(" "===n.wrapSplitCharacter?m.replace(/i&&n.push(a),i+=l}return n}(i,l,s);1===u.length&&(u[0]===i.length-1?u.unshift(u[0]-1):u.push(u[0]+1)),u[0]%2&&u.reverse(),e.each((function(t,e){t.page=u[e],t.scrollY=l})),e.attr("transform",(function(t){var e=O(t.rowBlocks,t.page)-t.scrollY;return c(0,e)})),t&&(C(t,r,e,u,n.prevPages,n,0),C(t,r,e,u,n.prevPages,n,1),y(r,t))}}function E(t,e,r,a){return function(o){var s=o.calcdata?o.calcdata:o,l=e.filter((function(t){return s.key===t.key})),c=r||s.scrollbarState.dragMultiplier,u=s.scrollY;s.scrollY=void 0===a?s.scrollY+c*i.event.dy:a;var f=l.selectAll("."+n.cn.yColumn).selectAll("."+n.cn.columnBlock).filter(k);return S(t,f,l),s.scrollY===u}}function C(t,e,r,n,i,a,o){n[o]!==i[o]&&(clearTimeout(a.currentRepaint[o]),a.currentRepaint[o]=setTimeout((function(){var a=r.filter((function(t,e){return e===o&&n[e]!==i[e]}));x(t,e,a,r),i[o]=n[o]})))}function L(t,e,r,a){return function(){var o=i.select(e.parentNode);o.each((function(t){var e=t.fragments;o.selectAll("tspan.line").each((function(t,r){e[r].width=this.getComputedTextLength()}));var r,i,a=e[e.length-1].width,s=e.slice(0,-1),l=[],c=0,u=t.column.columnWidth-2*n.cellPad;for(t.value="";s.length;)c+(i=(r=s.shift()).width+a)>u&&(t.value+=l.join(n.wrapSpacer)+n.lineBreaker,l=[],c=0),l.push(r.text),c+=i;c&&(t.value+=l.join(n.wrapSpacer)),t.wrapped=!0})),o.selectAll("tspan.line").remove(),b(o.select("."+n.cn.cellText),r,t,a),i.select(e.parentNode.parentNode).call(z)}}function I(t,e,r,a,o){return function(){if(!o.settledY){var s=i.select(e.parentNode),l=F(o),u=o.key-l.firstRowIndex,f=l.rows[u].rowHeight,h=o.cellHeightMayIncrease?e.parentNode.getBoundingClientRect().height+2*n.cellPad:f,p=Math.max(h,f);p-l.rows[u].rowHeight&&(l.rows[u].rowHeight=p,t.selectAll("."+n.cn.columnCell).call(z),S(null,t.filter(k),0),y(r,a,!0)),s.attr("transform",(function(){var t=this.parentNode.getBoundingClientRect(),e=i.select(this.parentNode).select("."+n.cn.cellRect).node().getBoundingClientRect(),r=this.transform.baseVal.consolidate(),a=e.top-t.top+(r?r.matrix.f:n.cellPad);return c(P(o,i.select(this.parentNode).select("."+n.cn.cellTextHolder).node().getBoundingClientRect().width),a)})),o.settledY=!0}}}function P(t,e){switch(t.align){case"left":return n.cellPad;case"right":return t.column.columnWidth-(e||0)-n.cellPad;case"center":return(t.column.columnWidth-(e||0))/2;default:return n.cellPad}}function z(t){t.attr("transform",(function(t){var e=t.rowBlocks[0].auxiliaryBlocks.reduce((function(t,e){return t+D(e,1/0)}),0),r=D(F(t),t.key);return c(0,r+e)})).selectAll("."+n.cn.cellRect).attr("height",(function(t){return(e=F(t),r=t.key,e.rows[r-e.firstRowIndex]).rowHeight;var e,r}))}function O(t,e){for(var r=0,n=e-1;n>=0;n--)r+=R(t[n]);return r}function D(t,e){for(var r=0,n=0;n","<","|","/","\\"],dflt:">",editType:"plot"},thickness:{valType:"number",min:12,editType:"plot"},textfont:u({},s.textfont,{}),editType:"calc"},text:s.text,textinfo:l.textinfo,texttemplate:i({editType:"plot"},{keys:c.eventDataKeys.concat(["label","value"])}),hovertext:s.hovertext,hoverinfo:l.hoverinfo,hovertemplate:n({},{keys:c.eventDataKeys}),textfont:s.textfont,insidetextfont:s.insidetextfont,outsidetextfont:u({},s.outsidetextfont,{}),textposition:{valType:"enumerated",values:["top left","top center","top right","middle left","middle center","middle right","bottom left","bottom center","bottom right"],dflt:"top left",editType:"plot"},sort:s.sort,root:l.root,domain:o({name:"treemap",trace:!0,editType:"calc"})}},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/domain":855,"../../plots/template_attributes":906,"../pie/attributes":1161,"../sunburst/attributes":1299,"./constants":1328}],1326:[function(t,e,r){"use strict";var n=t("../../plots/plots");r.name="treemap",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{"../../plots/plots":891}],1327:[function(t,e,r){"use strict";var n=t("../sunburst/calc");r.calc=function(t,e){return n.calc(t,e)},r.crossTraceCalc=function(t){return n._runCrossTraceCalc("treemap",t)}},{"../sunburst/calc":1301}],1328:[function(t,e,r){"use strict";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:"poly",eventDataKeys:["currentPath","root","entry","percentRoot","percentEntry","percentParent"],gapWithPathbar:1}},{}],1329:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../components/color"),o=t("../../plots/domain").defaults,s=t("../bar/defaults").handleText,l=t("../bar/constants").TEXTPAD,c=t("../../components/colorscale"),u=c.hasColorscale,f=c.handleDefaults;e.exports=function(t,e,r,c){function h(r,a){return n.coerce(t,e,i,r,a)}var p=h("labels"),d=h("parents");if(p&&p.length&&d&&d.length){var g=h("values");g&&g.length?h("branchvalues"):h("count"),h("level"),h("maxdepth"),"squarify"===h("tiling.packing")&&h("tiling.squarifyratio"),h("tiling.flip"),h("tiling.pad");var m=h("text");h("texttemplate"),e.texttemplate||h("textinfo",Array.isArray(m)?"text+label":"label"),h("hovertext"),h("hovertemplate");var v=h("pathbar.visible");s(t,e,c,h,"auto",{hasPathbar:v,moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),h("textposition");var y=-1!==e.textposition.indexOf("bottom");h("marker.line.width")&&h("marker.line.color",c.paper_bgcolor);var x=h("marker.colors"),b=e._hasColorscale=u(t,"marker","colors")||(t.marker||{}).coloraxis;b?f(t,e,c,h,{prefix:"marker.",cLetter:"c"}):h("marker.depthfade",!(x||[]).length);var _=2*e.textfont.size;h("marker.pad.t",y?_/4:_),h("marker.pad.l",_/4),h("marker.pad.r",_/4),h("marker.pad.b",y?_:_/4),b&&f(t,e,c,h,{prefix:"marker.",cLetter:"c"}),e._hovered={marker:{line:{width:2,color:a.contrast(c.paper_bgcolor)}}},v&&(h("pathbar.thickness",e.pathbar.textfont.size+2*l),h("pathbar.side"),h("pathbar.edgeshape")),h("sort"),h("root.color"),o(e,c,h),e._length=null}else e.visible=!1}},{"../../components/color":643,"../../components/colorscale":655,"../../lib":778,"../../plots/domain":855,"../bar/constants":923,"../bar/defaults":925,"./attributes":1325}],1330:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../../lib/svg_text_utils"),s=t("./partition"),l=t("./style").styleOne,c=t("./constants"),u=t("../sunburst/helpers"),f=t("../sunburst/fx");e.exports=function(t,e,r,h,p){var d=p.barDifY,g=p.width,m=p.height,v=p.viewX,y=p.viewY,x=p.pathSlice,b=p.toMoveInsideSlice,_=p.strTransform,w=p.hasTransition,T=p.handleSlicesExit,k=p.makeUpdateSliceInterpolator,M=p.makeUpdateTextInterpolator,A={},S=t._fullLayout,E=e[0],C=E.trace,L=E.hierarchy,I=g/C._entryDepth,P=u.listPath(r.data,"id"),z=s(L.copy(),[g,m],{packing:"dice",pad:{inner:0,top:0,left:0,right:0,bottom:0}}).descendants();(z=z.filter((function(t){var e=P.indexOf(t.data.id);return-1!==e&&(t.x0=I*e,t.x1=I*(e+1),t.y0=d,t.y1=d+m,t.onPathbar=!0,!0)}))).reverse(),(h=h.data(z,u.getPtId)).enter().append("g").classed("pathbar",!0),T(h,!0,A,[g,m],x),h.order();var O=h;w&&(O=O.transition().each("end",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:!1})}))),O.each((function(s){s._hoverX=v(s.x1-Math.min(g,m)/2),s._hoverY=y(s.y1-m/2);var h=n.select(this),p=i.ensureSingle(h,"path","surface",(function(t){t.style("pointer-events","all")}));w?p.transition().attrTween("d",(function(t){var e=k(t,!0,A,[g,m]);return function(t){return x(e(t))}})):p.attr("d",x),h.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:t._transitioning}),p.call(l,s,C,{hovered:!1}),s._text=(u.getPtLabel(s)||"").split("
").join(" ")||"";var d=i.ensureSingle(h,"g","slicetext"),T=i.ensureSingle(d,"text","",(function(t){t.attr("data-notex",1)})),E=i.ensureUniformFontSize(t,u.determineTextFont(C,s,S.font,{onPathbar:!0}));T.text(s._text||" ").classed("slicetext",!0).attr("text-anchor","start").call(a.font,E).call(o.convertToTspans,t),s.textBB=a.bBox(T.node()),s.transform=b(s,{fontSize:E.size,onPathbar:!0}),s.transform.fontSize=E.size,w?T.transition().attrTween("transform",(function(t){var e=M(t,!0,A,[g,m]);return function(t){return _(e(t))}})):T.attr("transform",_(s))}))}},{"../../components/drawing":665,"../../lib":778,"../../lib/svg_text_utils":803,"../sunburst/fx":1304,"../sunburst/helpers":1305,"./constants":1328,"./partition":1335,"./style":1337,d3:169}],1331:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../../lib/svg_text_utils"),s=t("./partition"),l=t("./style").styleOne,c=t("./constants"),u=t("../sunburst/helpers"),f=t("../sunburst/fx"),h=t("../sunburst/plot").formatSliceLabel;e.exports=function(t,e,r,p,d){var g=d.width,m=d.height,v=d.viewX,y=d.viewY,x=d.pathSlice,b=d.toMoveInsideSlice,_=d.strTransform,w=d.hasTransition,T=d.handleSlicesExit,k=d.makeUpdateSliceInterpolator,M=d.makeUpdateTextInterpolator,A=d.prevEntry,S=t._fullLayout,E=e[0].trace,C=-1!==E.textposition.indexOf("left"),L=-1!==E.textposition.indexOf("right"),I=-1!==E.textposition.indexOf("bottom"),P=!I&&!E.marker.pad.t||I&&!E.marker.pad.b,z=s(r,[g,m],{packing:E.tiling.packing,squarifyratio:E.tiling.squarifyratio,flipX:E.tiling.flip.indexOf("x")>-1,flipY:E.tiling.flip.indexOf("y")>-1,pad:{inner:E.tiling.pad,top:E.marker.pad.t,left:E.marker.pad.l,right:E.marker.pad.r,bottom:E.marker.pad.b}}).descendants(),O=1/0,D=-1/0;z.forEach((function(t){var e=t.depth;e>=E._maxDepth?(t.x0=t.x1=(t.x0+t.x1)/2,t.y0=t.y1=(t.y0+t.y1)/2):(O=Math.min(O,e),D=Math.max(D,e))})),p=p.data(z,u.getPtId),E._maxVisibleLayers=isFinite(D)?D-O+1:0,p.enter().append("g").classed("slice",!0),T(p,!1,{},[g,m],x),p.order();var R=null;if(w&&A){var F=u.getPtId(A);p.each((function(t){null===R&&u.getPtId(t)===F&&(R={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})}))}var B=function(){return R||{x0:0,x1:g,y0:0,y1:m}},N=p;return w&&(N=N.transition().each("end",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})}))),N.each((function(s){var p=u.isHeader(s,E);s._hoverX=v(s.x1-E.marker.pad.r),s._hoverY=y(I?s.y1-E.marker.pad.b/2:s.y0+E.marker.pad.t/2);var d=n.select(this),T=i.ensureSingle(d,"path","surface",(function(t){t.style("pointer-events","all")}));w?T.transition().attrTween("d",(function(t){var e=k(t,!1,B(),[g,m]);return function(t){return x(e(t))}})):T.attr("d",x),d.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{isTransitioning:t._transitioning}),T.call(l,s,E,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text="":s._text=p?P?"":u.getPtLabel(s)||"":h(s,r,E,e,S)||"";var A=i.ensureSingle(d,"g","slicetext"),z=i.ensureSingle(A,"text","",(function(t){t.attr("data-notex",1)})),O=i.ensureUniformFontSize(t,u.determineTextFont(E,s,S.font));z.text(s._text||" ").classed("slicetext",!0).attr("text-anchor",L?"end":C||p?"start":"middle").call(a.font,O).call(o.convertToTspans,t),s.textBB=a.bBox(z.node()),s.transform=b(s,{fontSize:O.size,isHeader:p}),s.transform.fontSize=O.size,w?z.transition().attrTween("transform",(function(t){var e=M(t,!1,B(),[g,m]);return function(t){return _(e(t))}})):z.attr("transform",_(s))})),R}},{"../../components/drawing":665,"../../lib":778,"../../lib/svg_text_utils":803,"../sunburst/fx":1304,"../sunburst/helpers":1305,"../sunburst/plot":1309,"./constants":1328,"./partition":1335,"./style":1337,d3:169}],1332:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"treemap",basePlotModule:t("./base_plot"),categories:[],animatable:!0,attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot"),style:t("./style").style,colorbar:t("../scatter/marker_colorbar"),meta:{}}},{"../scatter/marker_colorbar":1205,"./attributes":1325,"./base_plot":1326,"./calc":1327,"./defaults":1329,"./layout_attributes":1333,"./layout_defaults":1334,"./plot":1336,"./style":1337}],1333:[function(t,e,r){"use strict";e.exports={treemapcolorway:{valType:"colorlist",editType:"calc"},extendtreemapcolors:{valType:"boolean",dflt:!0,editType:"calc"}}},{}],1334:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r("treemapcolorway",e.colorway),r("extendtreemapcolors")}},{"../../lib":778,"./layout_attributes":1333}],1335:[function(t,e,r){"use strict";var n=t("d3-hierarchy");e.exports=function(t,e,r){var i,a=r.flipX,o=r.flipY,s="dice-slice"===r.packing,l=r.pad[o?"bottom":"top"],c=r.pad[a?"right":"left"],u=r.pad[a?"left":"right"],f=r.pad[o?"top":"bottom"];s&&(i=c,c=l,l=i,i=u,u=f,f=i);var h=n.treemap().tile(function(t,e){switch(t){case"squarify":return n.treemapSquarify.ratio(e);case"binary":return n.treemapBinary;case"dice":return n.treemapDice;case"slice":return n.treemapSlice;default:return n.treemapSliceDice}}(r.packing,r.squarifyratio)).paddingInner(r.pad.inner).paddingLeft(c).paddingRight(u).paddingTop(l).paddingBottom(f).size(s?[e[1],e[0]]:e)(t);return(s||a||o)&&function t(e,r,n){var i;n.swapXY&&(i=e.x0,e.x0=e.y0,e.y0=i,i=e.x1,e.x1=e.y1,e.y1=i);n.flipX&&(i=e.x0,e.x0=r[0]-e.x1,e.x1=r[0]-i);n.flipY&&(i=e.y0,e.y0=r[1]-e.y1,e.y1=r[1]-i);var a=e.children;if(a)for(var o=0;o-1?E+I:-(L+I):0,z={x0:C,x1:C,y0:P,y1:P+L},O=function(t,e,r){var n=m.tiling.pad,i=function(t){return t-n<=e.x0},a=function(t){return t+n>=e.x1},o=function(t){return t-n<=e.y0},s=function(t){return t+n>=e.y1};return{x0:i(t.x0-n)?0:a(t.x0-n)?r[0]:t.x0,x1:i(t.x1+n)?0:a(t.x1+n)?r[0]:t.x1,y0:o(t.y0-n)?0:s(t.y0-n)?r[1]:t.y0,y1:o(t.y1+n)?0:s(t.y1+n)?r[1]:t.y1}},D=null,R={},F={},B=null,N=function(t,e){return e?R[g(t)]:F[g(t)]},j=function(t,e,r,n){if(e)return R[g(v)]||z;var i=F[m.level]||r;return function(t){return t.data.depth-y.data.depth=(n-=v.r-o)){var y=(r+n)/2;r=y,n=y}var x;h?i<(x=a-v.b)&&x"===Q?(l.x-=a,c.x-=a,u.x-=a,f.x-=a):"/"===Q?(u.x-=a,f.x-=a,o.x-=a/2,s.x-=a/2):"\\"===Q?(l.x-=a,c.x-=a,o.x-=a/2,s.x-=a/2):"<"===Q&&(o.x-=a,s.x-=a),K(l),K(f),K(o),K(c),K(u),K(s),"M"+Z(l.x,l.y)+"L"+Z(c.x,c.y)+"L"+Z(s.x,s.y)+"L"+Z(u.x,u.y)+"L"+Z(f.x,f.y)+"L"+Z(o.x,o.y)+"Z"},toMoveInsideSlice:$,makeUpdateSliceInterpolator:et,makeUpdateTextInterpolator:rt,handleSlicesExit:nt,hasTransition:T,strTransform:it}):b.remove()}e.exports=function(t,e,r,a){var o,s,l=t._fullLayout,c=l._treemaplayer,h=!r;(u("treemap",l),(o=c.selectAll("g.trace.treemap").data(e,(function(t){return t[0].trace.uid}))).enter().append("g").classed("trace",!0).classed("treemap",!0),o.order(),!l.uniformtext.mode&&i.hasTransition(r))?(a&&(s=a()),n.transition().duration(r.duration).ease(r.easing).each("end",(function(){s&&s()})).each("interrupt",(function(){s&&s()})).each((function(){c.selectAll("g.trace").each((function(e){m(t,e,this,r)}))}))):(o.each((function(e){m(t,e,this,r)})),l.uniformtext.mode&&f(t,l._treemaplayer.selectAll(".trace"),"treemap"));h&&o.exit().remove()}},{"../../lib":778,"../bar/constants":923,"../bar/plot":932,"../bar/style":935,"../bar/uniform_text":937,"../sunburst/helpers":1305,"./constants":1328,"./draw_ancestors":1330,"./draw_descendants":1331,d3:169}],1337:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/color"),a=t("../../lib"),o=t("../sunburst/helpers"),s=t("../bar/uniform_text").resizeText;function l(t,e,r,n){var s,l,c=(n||{}).hovered,u=e.data.data,f=u.i,h=u.color,p=o.isHierarchyRoot(e),d=1;if(c)s=r._hovered.marker.line.color,l=r._hovered.marker.line.width;else if(p&&h===r.root.color)d=100,s="rgba(0,0,0,0)",l=0;else if(s=a.castOption(r,f,"marker.line.color")||i.defaultLine,l=a.castOption(r,f,"marker.line.width")||0,!r._hasColorscale&&!e.onPathbar){var g=r.marker.depthfade;if(g){var m,v=i.combine(i.addOpacity(r._backgroundColor,.75),h);if(!0===g){var y=o.getMaxDepth(r);m=isFinite(y)?o.isLeaf(e)?0:r._maxVisibleLayers-(e.data.depth-r._entryDepth):e.data.height+1}else m=e.data.depth-r._entryDepth,r._atRootLevel||m++;if(m>0)for(var x=0;x0){var y,x,b,_,w,T=t.xa,k=t.ya;"h"===h.orientation?(w=e,y="y",b=k,x="x",_=T):(w=r,y="x",b=T,x="y",_=k);var M=f[t.index];if(w>=M.span[0]&&w<=M.span[1]){var A=n.extendFlat({},t),S=_.c2p(w,!0),E=o.getKdeValue(M,h,w),C=o.getPositionOnKdePath(M,h,S),L=b._offset,I=b._length;A[y+"0"]=C[0],A[y+"1"]=C[1],A[x+"0"]=A[x+"1"]=S,A[x+"Label"]=x+": "+i.hoverLabelText(_,w)+", "+f[0].t.labels.kde+" "+E.toFixed(3),A.spikeDistance=v[0].spikeDistance;var P=y+"Spike";A[P]=v[0][P],v[0].spikeDistance=void 0,v[0][P]=void 0,A.hovertemplate=!1,m.push(A),(u={stroke:t.color})[y+"1"]=n.constrain(L+C[0],L,L+I),u[y+"2"]=n.constrain(L+C[1],L,L+I),u[x+"1"]=u[x+"2"]=_._offset+S}}d&&(m=m.concat(v))}-1!==p.indexOf("points")&&(c=a.hoverOnPoints(t,e,r));var z=l.selectAll(".violinline-"+h.uid).data(u?[0]:[]);return z.enter().append("line").classed("violinline-"+h.uid,!0).attr("stroke-width",1.5),z.exit().remove(),z.attr(u),"closest"===s?c?[c]:m:c?(m.push(c),m):m}},{"../../lib":778,"../../plots/cartesian/axes":828,"../box/hover":951,"./helpers":1342}],1344:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),crossTraceDefaults:t("../box/defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc"),plot:t("./plot"),style:t("./style"),styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../box/select"),moduleType:"trace",name:"violin",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","symbols","oriented","box-violin","showLegend","violinLayout","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../box/defaults":949,"../box/select":956,"../scatter/style":1211,"./attributes":1338,"./calc":1339,"./cross_trace_calc":1340,"./defaults":1341,"./hover":1343,"./layout_attributes":1345,"./layout_defaults":1346,"./plot":1347,"./style":1348}],1345:[function(t,e,r){"use strict";var n=t("../box/layout_attributes"),i=t("../../lib").extendFlat;e.exports={violinmode:i({},n.boxmode,{}),violingap:i({},n.boxgap,{}),violingroupgap:i({},n.boxgroupgap,{})}},{"../../lib":778,"../box/layout_attributes":953}],1346:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes"),a=t("../box/layout_defaults");e.exports=function(t,e,r){a._supply(t,e,r,(function(r,a){return n.coerce(t,e,i,r,a)}),"violin")}},{"../../lib":778,"../box/layout_defaults":954,"./layout_attributes":1345}],1347:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../box/plot"),s=t("../scatter/line_points"),l=t("./helpers");e.exports=function(t,e,r,c){var u=t._fullLayout,f=e.xaxis,h=e.yaxis;function p(t){var e=s(t,{xaxis:f,yaxis:h,connectGaps:!0,baseTolerance:.75,shape:"spline",simplify:!0,linearized:!0});return a.smoothopen(e[0],1)}i.makeTraceGroups(c,r,"trace violins").each((function(t){var r=n.select(this),a=t[0],s=a.t,c=a.trace;if(!0!==c.visible||s.empty)r.remove();else{var d=s.bPos,g=s.bdPos,m=e[s.valLetter+"axis"],v=e[s.posLetter+"axis"],y="both"===c.side,x=y||"positive"===c.side,b=y||"negative"===c.side,_=r.selectAll("path.violin").data(i.identity);_.enter().append("path").style("vector-effect","non-scaling-stroke").attr("class","violin"),_.exit().remove(),_.each((function(t){var e,r,i,a,o,l,f,h,_=n.select(this),w=t.density,T=w.length,k=v.c2l(t.pos+d,!0),M=v.l2p(k);if(c.width)e=s.maxKDE/g;else{var A=u._violinScaleGroupStats[c.scalegroup];e="count"===c.scalemode?A.maxKDE/g*(A.maxCount/t.pts.length):A.maxKDE/g}if(x){for(f=new Array(T),o=0;o<T;o++)(h=f[o]={})[s.posLetter]=k+w[o].v/e,h[s.valLetter]=m.c2l(w[o].t,!0);r=p(f)}if(b){for(f=new Array(T),l=0,o=T-1;l<T;l++,o--)(h=f[l]={})[s.posLetter]=k-w[o].v/e,h[s.valLetter]=m.c2l(w[o].t,!0);i=p(f)}if(y)a=r+"L"+i.substr(1)+"Z";else{var S=[M,m.c2p(w[0].t)],E=[M,m.c2p(w[T-1].t)];"h"===c.orientation&&(S.reverse(),E.reverse()),a=x?"M"+S+"L"+r.substr(1)+"L"+E:"M"+E+"L"+i.substr(1)+"L"+S}_.attr("d",a),t.posCenterPx=M,t.posDensityScale=e*g,t.path=_.node(),t.pathLength=t.path.getTotalLength()/(y?2:1)}));var w,T,k,M=c.box,A=M.width,S=(M.line||{}).width;y?(w=g*A,T=0):x?(w=[0,g*A/2],T=S*{x:1,y:-1}[s.posLetter]):(w=[g*A/2,0],T=S*{x:-1,y:1}[s.posLetter]),o.plotBoxAndWhiskers(r,{pos:v,val:m},c,{bPos:d,bdPos:w,bPosPxOffset:T}),o.plotBoxMean(r,{pos:v,val:m},c,{bPos:d,bdPos:w,bPosPxOffset:T}),!c.box.visible&&c.meanline.visible&&(k=i.identity);var E=r.selectAll("path.meanline").data(k||[]);E.enter().append("path").attr("class","meanline").style("fill","none").style("vector-effect","non-scaling-stroke"),E.exit().remove(),E.each((function(t){var e=m.c2p(t.mean,!0),r=l.getPositionOnKdePath(t,c,e);n.select(this).attr("d","h"===c.orientation?"M"+e+","+r[0]+"V"+r[1]:"M"+r[0]+","+e+"H"+r[1])})),o.plotPoints(r,{x:f,y:h},c,s)}}))}},{"../../components/drawing":665,"../../lib":778,"../box/plot":955,"../scatter/line_points":1201,"./helpers":1342,d3:169}],1348:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/color"),a=t("../scatter/style").stylePoints;e.exports=function(t){var e=n.select(t).selectAll("g.trace.violins");e.style("opacity",(function(t){return t[0].trace.opacity})),e.each((function(e){var r=e[0].trace,o=n.select(this),s=r.box||{},l=s.line||{},c=r.meanline||{},u=c.width;o.selectAll("path.violin").style("stroke-width",r.line.width+"px").call(i.stroke,r.line.color).call(i.fill,r.fillcolor),o.selectAll("path.box").style("stroke-width",l.width+"px").call(i.stroke,l.color).call(i.fill,s.fillcolor);var f={"stroke-width":u+"px","stroke-dasharray":2*u+"px,"+u+"px"};o.selectAll("path.mean").style(f).call(i.stroke,c.color),o.selectAll("path.meanline").style(f).call(i.stroke,c.color),a(o,r,t)}))}},{"../../components/color":643,"../scatter/style":1211,d3:169}],1349:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../isosurface/attributes"),a=t("../surface/attributes"),o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat,l=t("../../plot_api/edit_types").overrideAll,c=e.exports=l(s({x:i.x,y:i.y,z:i.z,value:i.value,isomin:i.isomin,isomax:i.isomax,surface:i.surface,spaceframe:{show:{valType:"boolean",dflt:!1},fill:{valType:"number",min:0,max:1,dflt:1}},slices:i.slices,caps:i.caps,text:i.text,hovertext:i.hovertext,hovertemplate:i.hovertemplate},n("",{colorAttr:"`value`",showScaleDflt:!0,editTypeOverride:"calc"}),{colorbar:i.colorbar,opacity:i.opacity,opacityscale:a.opacityscale,lightposition:i.lightposition,lighting:i.lighting,flatshading:i.flatshading,contour:i.contour,hoverinfo:s({},o.hoverinfo),showlegend:s({},o.showlegend,{dflt:!1})}),"calc","nested");c.x.editType=c.y.editType=c.z.editType=c.value.editType="calc+clearAxisTypes",c.transforms=void 0},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plot_api/edit_types":810,"../../plots/attributes":824,"../isosurface/attributes":1123,"../surface/attributes":1311}],1350:[function(t,e,r){"use strict";var n=t("gl-mesh3d"),i=t("../../lib/gl_format_color").parseColorScale,a=t("../../lib/str2rgbarray"),o=t("../../components/colorscale").extractOpts,s=t("../../plots/gl3d/zip3"),l=t("../isosurface/convert").findNearestOnAxis,c=t("../isosurface/convert").generateIsoMeshes;function u(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name="",this.data=null,this.showContour=!1}var f=u.prototype;f.handlePick=function(t){if(t.object===this.mesh){var e=t.data.index,r=this.data._meshX[e],n=this.data._meshY[e],i=this.data._meshZ[e],a=this.data._Ys.length,o=this.data._Zs.length,s=l(r,this.data._Xs).id,c=l(n,this.data._Ys).id,u=l(i,this.data._Zs).id,f=t.index=u+o*c+o*a*s;t.traceCoordinate=[this.data._meshX[f],this.data._meshY[f],this.data._meshZ[f],this.data._value[f]];var h=this.data.hovertext||this.data.text;return Array.isArray(h)&&void 0!==h[f]?t.textLabel=h[f]:h&&(t.textLabel=h),!0}},f.update=function(t){var e=this.scene,r=e.fullSceneLayout;function n(t,e,r,n){return e.map((function(e){return t.d2l(e,0,n)*r}))}this.data=c(t);var l={positions:s(n(r.xaxis,t._meshX,e.dataScale[0],t.xcalendar),n(r.yaxis,t._meshY,e.dataScale[1],t.ycalendar),n(r.zaxis,t._meshZ,e.dataScale[2],t.zcalendar)),cells:s(t._meshI,t._meshJ,t._meshK),lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,opacityscale:t.opacityscale,contourEnable:t.contour.show,contourColor:a(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading},u=o(t);l.vertexIntensity=t._meshIntensity,l.vertexIntensityBounds=[u.min,u.max],l.colormap=i(t),this.mesh.update(l)},f.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,i=n({gl:r}),a=new u(t,i,e.uid);return i._trace=a,a.update(e),t.glplot.add(i),a}},{"../../components/colorscale":655,"../../lib/gl_format_color":774,"../../lib/str2rgbarray":802,"../../plots/gl3d/zip3":881,"../isosurface/convert":1125,"gl-mesh3d":309}],1351:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../isosurface/defaults").supplyIsoDefaults,o=t("../surface/defaults").opacityscaleDefaults;e.exports=function(t,e,r,s){function l(r,a){return n.coerce(t,e,i,r,a)}a(t,e,r,s,l),o(t,e,s,l)}},{"../../lib":778,"../isosurface/defaults":1126,"../surface/defaults":1314,"./attributes":1349}],1352:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("../isosurface/calc"),colorbar:{min:"cmin",max:"cmax"},plot:t("./convert"),moduleType:"trace",name:"volume",basePlotModule:t("../../plots/gl3d"),categories:["gl3d","showLegend"],meta:{}}},{"../../plots/gl3d":870,"../isosurface/calc":1124,"./attributes":1349,"./convert":1350,"./defaults":1351}],1353:[function(t,e,r){"use strict";var n=t("../bar/attributes"),i=t("../scatter/attributes").line,a=t("../../plots/attributes"),o=t("../../plots/template_attributes").hovertemplateAttrs,s=t("../../plots/template_attributes").texttemplateAttrs,l=t("./constants"),c=t("../../lib/extend").extendFlat,u=t("../../components/color");function f(t){return{marker:{color:c({},n.marker.color,{arrayOk:!1,editType:"style"}),line:{color:c({},n.marker.line.color,{arrayOk:!1,editType:"style"}),width:c({},n.marker.line.width,{arrayOk:!1,editType:"style"}),editType:"style"},editType:"style"},editType:"style"}}e.exports={measure:{valType:"data_array",dflt:[],editType:"calc"},base:{valType:"number",dflt:null,arrayOk:!1,editType:"calc"},x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:n.xperiod0,yperiod0:n.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,hovertext:n.hovertext,hovertemplate:o({},{keys:l.eventDataKeys}),hoverinfo:c({},a.hoverinfo,{flags:["name","x","y","text","initial","delta","final"]}),textinfo:{valType:"flaglist",flags:["label","text","initial","delta","final"],extras:["none"],editType:"plot",arrayOk:!1},texttemplate:s({editType:"plot"},{keys:l.eventDataKeys.concat(["label"])}),text:n.text,textposition:n.textposition,insidetextanchor:n.insidetextanchor,textangle:n.textangle,textfont:n.textfont,insidetextfont:n.insidetextfont,outsidetextfont:n.outsidetextfont,constraintext:n.constraintext,cliponaxis:n.cliponaxis,orientation:n.orientation,offset:n.offset,width:n.width,increasing:f(),decreasing:f(),totals:f(),connector:{line:{color:c({},i.color,{dflt:u.defaultLine}),width:c({},i.width,{editType:"plot"}),dash:i.dash,editType:"plot"},mode:{valType:"enumerated",values:["spanning","between"],dflt:"between",editType:"plot"},visible:{valType:"boolean",dflt:!0,editType:"plot"},editType:"plot"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup}},{"../../components/color":643,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../bar/attributes":921,"../scatter/attributes":1187,"./constants":1355}],1354:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../plots/cartesian/align_period"),a=t("../../lib").mergeArray,o=t("../scatter/calc_selection"),s=t("../../constants/numerical").BADNUM;function l(t){return"a"===t||"absolute"===t}function c(t){return"t"===t||"total"===t}e.exports=function(t,e){var r,u,f,h,p=n.getFromId(t,e.xaxis||"x"),d=n.getFromId(t,e.yaxis||"y");"h"===e.orientation?(r=p.makeCalcdata(e,"x"),f=d.makeCalcdata(e,"y"),u=i(e,d,"y",f),h=!!e.yperiodalignment):(r=d.makeCalcdata(e,"y"),f=p.makeCalcdata(e,"x"),u=i(e,p,"x",f),h=!!e.xperiodalignment);for(var g,m=Math.min(u.length,r.length),v=new Array(m),y=0,x=!1,b=0;b")),c.color=function(t,e){var r=t[e.dir].marker,n=r.color,a=r.line.color,o=r.line.width;if(i(n))return n;if(i(a)&&o)return a}(f,d),[c]}function w(t){return n(p,t)}}},{"../../components/color":643,"../../constants/delta.js":747,"../../plots/cartesian/axes":828,"../bar/hover":928}],1360:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults").supplyDefaults,crossTraceDefaults:t("./defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc"),plot:t("./plot"),style:t("./style").style,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("../bar/select"),moduleType:"trace",name:"waterfall",basePlotModule:t("../../plots/cartesian"),categories:["bar-like","cartesian","svg","oriented","showLegend","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../bar/select":933,"./attributes":1353,"./calc":1354,"./cross_trace_calc":1356,"./defaults":1357,"./event_data":1358,"./hover":1359,"./layout_attributes":1361,"./layout_defaults":1362,"./plot":1363,"./style":1364}],1361:[function(t,e,r){"use strict";e.exports={waterfallmode:{valType:"enumerated",values:["group","overlay"],dflt:"group",editType:"calc"},waterfallgap:{valType:"number",min:0,max:1,editType:"calc"},waterfallgroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},{}],1362:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e,r){var a=!1;function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=0;s0&&(m+=h?"M"+f[0]+","+d[1]+"V"+d[0]:"M"+f[1]+","+d[0]+"H"+f[0]),"between"!==p&&(r.isSum||s path").each((function(t){if(!t.isBlank){var e=s[t.dir].marker;n.select(this).call(a.fill,e.color).call(a.stroke,e.line.color).call(i.dashLine,e.line.dash,e.line.width).style("opacity",s.selectedpoints&&!t.selected?o:1)}})),c(r,s,t),r.selectAll(".lines").each((function(){var t=s.connector.line;i.lineGroupStyle(n.select(this).selectAll("path"),t.width,t.color,t.dash)}))}))}}},{"../../components/color":643,"../../components/drawing":665,"../../constants/interactions":752,"../bar/style":935,"../bar/uniform_text":937,d3:169}],1365:[function(t,e,r){"use strict";var n=t("../plots/cartesian/axes"),i=t("../lib"),a=t("../plot_api/plot_schema"),o=t("./helpers").pointsAccessorFunction,s=t("../constants/numerical").BADNUM;r.moduleType="transform",r.name="aggregate";var l=r.attributes={enabled:{valType:"boolean",dflt:!0,editType:"calc"},groups:{valType:"string",strict:!0,noBlank:!0,arrayOk:!0,dflt:"x",editType:"calc"},aggregations:{_isLinkedToArray:"aggregation",target:{valType:"string",editType:"calc"},func:{valType:"enumerated",values:["count","sum","avg","median","mode","rms","stddev","min","max","first","last","change","range"],dflt:"first",editType:"calc"},funcmode:{valType:"enumerated",values:["sample","population"],dflt:"sample",editType:"calc"},enabled:{valType:"boolean",dflt:!0,editType:"calc"},editType:"calc"},editType:"calc"},c=l.aggregations;function u(t,e,r,a){if(a.enabled){for(var o=a.target,l=i.nestedProperty(e,o),c=l.get(),u=function(t,e){var r=t.func,n=e.d2c,a=e.c2d;switch(r){case"count":return f;case"first":return h;case"last":return p;case"sum":return function(t,e){for(var r=0,i=0;ii&&(i=u,o=c)}}return i?a(o):s};case"rms":return function(t,e){for(var r=0,i=0,o=0;o":return function(t){return h(t)>s};case">=":return function(t){return h(t)>=s};case"[]":return function(t){var e=h(t);return e>=s[0]&&e<=s[1]};case"()":return function(t){var e=h(t);return e>s[0]&&e=s[0]&&es[0]&&e<=s[1]};case"][":return function(t){var e=h(t);return e<=s[0]||e>=s[1]};case")(":return function(t){var e=h(t);return es[1]};case"](":return function(t){var e=h(t);return e<=s[0]||e>s[1]};case")[":return function(t){var e=h(t);return e=s[1]};case"{}":return function(t){return-1!==s.indexOf(h(t))};case"}{":return function(t){return-1===s.indexOf(h(t))}}}(r,a.getDataToCoordFunc(t,e,s,i),h),x={},b={},_=0;d?(m=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set(new Array(f))},v=function(t,e){var r=x[t.astr][e];t.get()[e]=r}):(m=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set([])},v=function(t,e){var r=x[t.astr][e];t.get().push(r)}),k(m);for(var w=o(e.transforms,r),T=0;T<f;T++){y(i[T])?(k(v,T),b[_++]=w(T)):d&&_++}r._indexToPoints=b,e._length=_}}function k(t,r){for(var i=0;i<p.length;i++){t(n.nestedProperty(e,p[i]),r)}}}},{"../constants/filter_ops":749,"../lib":778,"../plots/cartesian/axes":828,"../registry":911,"./helpers":1368}],1367:[function(t,e,r){"use strict";var n=t("../lib"),i=t("../plot_api/plot_schema"),a=t("../plots/plots"),o=t("./helpers").pointsAccessorFunction;function s(t,e){var r,s,l,c,u,f,h,p,d,g,m=e.transform,v=e.transformIndex,y=t.transforms[v].groups,x=o(t.transforms,m);if(!n.isArrayOrTypedArray(y)||0===y.length)return[t];var b=n.filterUnique(y),_=new Array(b.length),w=y.length,T=i.findArrayAttributes(t),k=m.styles||[],M={};for(r=0;r<k.length;r++)M[k[r].target]=k[r].value;m.styles&&(g=n.keyedContainer(m,"styles","target","value.name"));var A={},S={};for(r=0;r<b.length;r++){A[f=b[r]]=r,S[f]=0,(h=_[r]=n.extendDeepNoArrays({},t))._group=f,h.transforms[v]._indexToPoints={};var E=null;for(g&&(E=g.get(f)),h.name=E||""===E?E:n.templateString(m.nameformat,{trace:t.name,group:f}),p=h.transforms,h.transforms=[],s=0;s<p.length;s++)h.transforms[s]=n.extendDeepNoArrays({},p[s]);for(s=0;s<T.length;s++)n.nestedProperty(h,T[s]).set([])}for(l=0;l<T.length;l++){for(c=T[l],s=0,d=[];s<b.length;s++)d[s]=n.nestedProperty(_[s],c).get();for(u=n.nestedProperty(t,c).get(),s=0;s<w;s++)d[A[y[s]]].push(u[s])}for(s=0;s<w;s++){(h=_[A[y[s]]]).transforms[v]._indexToPoints[S[y[s]]]=x(s),S[y[s]]++}for(r=0;r<b.length;r++)f=b[r],h=_[r],a.clearExpandedTraceDefaultColors(h),h=n.extendDeepNoArrays(h,M[f]||{});return _}r.moduleType="transform",r.name="groupby",r.attributes={enabled:{valType:"boolean",dflt:!0,editType:"calc"},groups:{valType:"data_array",dflt:[],editType:"calc"},nameformat:{valType:"string",editType:"calc"},styles:{_isLinkedToArray:"style",target:{valType:"string",editType:"calc"},value:{valType:"any",dflt:{},editType:"calc",_compareAsJSON:!0},editType:"calc"},editType:"calc"},r.supplyDefaults=function(t,e,i){var a,o={};function s(e,i){return n.coerce(t,o,r.attributes,e,i)}if(!s("enabled"))return o;s("groups"),s("nameformat",i._dataLength>1?"%{group} (%{trace})":"%{group}");var l=t.styles,c=o.styles=[];if(l)for(a=0;a
(mp-1178770)
-3.848 eV/atom (+0.123 eV/atom)", "Y2, "width": 3}, "opacity": 0.8, "size": 12}, "mode": "markers", "name": "Stable", "showlegend": true, "type": "scatter3d", "x": [0.5196152422706631, 0.0, 0.4330127018922193, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O3, "opacity": 0.8, "size": 12}, "mode": "markers", "name": "Stable", "showlegend": true, "type": "scatter3d", "x": [0.5196152422706631, 0.0, 0.4330127018922193, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-558573)
-3.923 eV/atom (+0.048 eV/atom)", "Y2, "showlegend": true, "type": "scatter3d", "x": [0.5196152422706631, 0.0, 0.4330127018922193, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O3": true, "type": "scatter3d", "x": [0.5196152422706631, 0.0, 0.4330127018922193, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-13061)
-3.899 eV/atom (+0.072 eV/atom)", "Y230127018922193, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O33, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-775906)
-3.908 eV/atom (+0.063 eV/atom)", "Y21, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn37844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O9: [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-1350656)
-2.526 eV/atom (+0.122 eV/atom)", "Y6 [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn2 -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 3, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-1355)
0.096 eV/atom (+0.098 eV/atom)"], "marker": {"color": [0.012, 0.001, 0.03, 0.124, 0.002, 0.126, 0.018, 0.01, 0.145, 0.083, 0.053, 0.08, 0.005, 0.003, 0.03, 0.152, 0.006, 0.025, 0.172, 0.192, 0.014, 0.095, 0.097, 0.015, 0.168, 0.191, 0.03, 0.187, 0.187, 0.174, 0.077, 0.0, 0.059, 0.076, 0.05, 0.088, 0.17, 0.055, 0.186, 0.009, 0.093, 0.132, 0.044, 0.024, 0.004, 0.007, 0.182, 0.021, 0.134, 0.162, 0.093, 0.14, 0.172, 0.157, 0.051, 0.053, 0.09, 0.123, 0.048, 0.072, 0.063, 0.122, 0.098], "colorbar": {"len": 0.75, "title": {"text": "Energy Above Hull
(eV/atom)"}, "x": 0.05}, "colorscale": [[0.0, "#fad393"], [0.5, "#ff813d"], [1.0, "#ff0000"]], "size": 6, "symbol": "diamond"}, "mode": "markers", "name": "Above Hull", "showlegend": true, "type": "scatter3d", "x": [0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.0, 0.0, 0.0, 0.4330127018922193, 0.4330127018922193, 0.4330127018922193, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.6735753140545634, 0.49487165930539345, 0.49487165930539345, 0.532938710021193, 0.5888972745734183, 0.5910967041703311, 0.5678855106783204, 0.0, 0.0, 0.0, 0.5773502691896257, 0.5196152422706631, 0.0, 0.0, 0.49487165930539345, 0.49487165930539345, 0.49487165930539345, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5567306167185677, 0.0], "y": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1.0, 1.0, 1.0, 0.75, 0.75, 0.75, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.6111111111111112, 0.7142857142857142, 0.7142857142857142, 0.6923076923076923, 0.66, 0.6587301587301587, 0.6721311475409836, 0.0, 0.0, 0.0, 0.3333333333333333, 0.5, 0.6666666666666666, 0.6666666666666666, 0.5714285714285714, 0.5714285714285714, 0.5714285714285714, 0.6, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.5357142857142857, 0.7931034482758621], "z": [0.012, 0.001, 0.03, 0.124, 0.002, 0.126, 0.018, 0.01, 0.145, 0.083, 0.053, -1.899, -1.974, -1.976, -1.776, -1.654, -1.799, -1.78, -1.634, -1.614, -1.792, -1.711, -1.709, -1.791, -1.638, -1.615, -1.776, -1.619, -1.619, -1.632, -1.937, -2.014, -1.955, -1.938, -1.964, -1.926, -1.034, -1.995, -1.864, -1.957, -1.641, -1.588, -1.796, 0.024, 0.004, 0.007, -3.127, -3.015, 0.133, 0.161, -2.641, -2.594, -2.562, -2.375, -3.919, -3.918, -3.881, -3.848, -3.923, -3.899, -3.908, -2.526, 0.096]}, {"error_z": {"array": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "color": "darkgray", "thickness": 5, "type": "data", "width": 10}, "hoverinfo": "text", "hoverlabel": {"font": {"size": 14}}, "hovertext": ["Y26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O3f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-2652)
-3.971 eV/atom", "O2"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-12957)
0.0 eV/atom", "YMn2colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O5[[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-510598)
-2.639 eV/atom", "Y2], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-18831)
-2.878 eV/atom", "Mn2444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O3 "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-1172875)
-2.014 eV/atom", "YMn16666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 26, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-22508)
-0.001 eV/atom", "Mn (mp-35)
0.0 eV/atom", "YMnO31.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-19385)
-3.036 eV/atom", "MnO2m": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-19395)
-1.806 eV/atom", "Y (mp-1187739)
0.0 eV/atom", "Mn3], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O42d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-18759)
-2.05 eV/atom", "MnO (mp-19006)
-1.979 eV/atom"], "marker": {"color": "black", "line": {"color": "black", "width": 3}, "opacity": 0.8, "size": 12}, "mode": "markers", "name": "Stable", "showlegend": true, "type": "scatter3d", "x": [0.5196152422706631, 0.8660254037844386, 0.5412658773652741, 0.5511070751355518, 0.5196152422706631, 0.0, 0.0, 0.5196152422706631, 0.5773502691896257, 0.0, 0.49487165930539345, 0.4330127018922193], "y": [0.3, 0.5, 0.5625, 0.5, 0.7, 0.9230769230769231, 1.0, 0.5, 0.6666666666666666, 0.0, 0.7142857142857142, 0.75], "z": [-3.971, 0.0, -2.639, -2.878, -2.014, -0.001, 0.0, -3.036, -1.806, 0.0, -2.05, -1.979]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -3.5738280696750007}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -3.5738280696750007}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -3.5738280696750007}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('56748f2a-9385-4f19-9ac1-286397d32a62'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); >

var gd = document.getElementById('778541bb-fc80-411c-bbfc-e21b64b2be8e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }});

// Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }}

// Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }}

                    })                };                });            </script>

The default backend for plotting phase diagrams is plotly, however, you can also specify matplotlib:

plotter = PDPlotter(pd, backend="matplotlib")
plotter.get_plot(label_unstable=False).show()

From the phase diagram, we see that there are three ternary oxides within the system: YMnO\(_3\), YMn\(_2\)O\(_5\), and Y\(_2\)Mn\(_2\)O\(_7\).

Let's look at formation energy data in a pandas DataFrame. As before, let's first create a helper function to wrangle the data into the correct format:

def get_df_from_pd(pd):
    ents = pd.stable_entries

    formulas = [e.composition.reduced_formula for e in ents]
    form_energies = [pd.get_form_energy_per_atom(e) for e in ents]
    decomp_enthalpies = [pd.get_phase_separation_energy(e) for e in ents]

    data = {"formula": formulas, "form_energy (eV/atom)": form_energies, "decomp_enthalpy (eV/atom)": decomp_enthalpies}

    df = pandas.DataFrame(data).sort_values("form_energy (eV/atom)").reset_index(drop=True)

    return df

We then call this function to get the data frame:

get_df_from_pd(pd)
="cell border-box-sizing code_cell rendered" markdown="1"> formula"> form_energy (eV/atom)div class="cell border-box-sizing text_cell rendered" markdown="1"> decomp_enthalpy (eV/atom)lass="cell border-box-sizing text_cell rendered" markdown="1"> iv> div>
0"cell border-box-sizing text_cell rendered" markdown="1"> Y2O3ner_cell" markdown="1"> -3.970920ll_render border-box-sizing rendered_html" markdown="1"> -0.856833the grand potential phase diagram and plot it: v>
1 class="cell border-box-sizing code_cell rendered" markdown="1"> YMnO3l border-box-sizing code_cell rendered" markdown="1"> -3.036007
gpd = GrandPotentialPhaseDiagram(gibbs_entries, {open_elem: chempot})
gpd.get_plot()
-0.029013v> hzdk:36
2v class="output_wrapper" markdown="1"> Y2Mn2O7ut_wrapper" markdown="1"> -2.877818wrapper" markdown="1"> -0.056013 markdown="1"> v class="output_area" markdown="1">
3="output_html rendered_html output_subarea "> YMn2O5ut_html rendered_html output_subarea "> -2.639070
-0.031220getElementById('bf7cd591-4d68-41c4-97a5-b3ffce34868e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); gd = document.getElementById('bf7cd591-4d68-41c4-97a5-b3ffce34868e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
4 display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn3O4splay || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -2.050443.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -0.046443purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
5sten for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn2O3the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -2.013920emoval of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -0.024500er = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
6en for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); MnOr the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -1.979201learing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -0.185063losest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
7 }) }; }); MnO2 }) }; }); -1.805830 }) }; }); -0.066579iv> iv>
8iv> YMn12 -0.001407 class="cell border-box-sizing text_cell rendered" markdown="1"> -0.001407"cell border-box-sizing text_cell rendered" markdown="1"> v>
9"inner_cell" markdown="1"> Mntext_cell_render border-box-sizing rendered_html" markdown="1"> 0.000000ential phase diagram above, we see that only YMn$_2$O$_5$ and Y$_2$Mn$_2$O$_7$ are stable at a relative oxygen chemical potential of 0 eV at T = 1000 K. This corresponds to flowing (open) oxygen gas at the standard state of pressure of 0.1 MPa (close to 1 atm). Note that the phase diagram above corresponds to a binary system, since we have removed a degree of freedom by fixing the oxygen chemical potential to a specific value. 0.000000se diagram above corresponds to a binary system, since we have removed a degree of freedom by fixing the oxygen chemical potential to a specific value. that the phase diagram above corresponds to a binary system, since we have removed a degree of freedom by fixing the oxygen chemical potential to a specific value.
10> Y class="cell border-box-sizing text_cell rendered" markdown="1"> 0.000000order-box-sizing text_cell rendered" markdown="1"> 0.000000cell" markdown="1"> class="text_cell_render border-box-sizing rendered_html" markdown="1">
11he partial pressure of oxygen (at T = 1000 K) where YMnO$_3$ becomes stable. **Hint:** *Determine the chemical potential of oxygen from manual phase diagram construction and use the following formula to solve for the pressure:* $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$ O2e partial pressure of oxygen (at T = 1000 K) where YMnO$_3$ becomes stable. **Hint:** *Determine the chemical potential of oxygen from manual phase diagram construction and use the following formula to solve for the pressure:* $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$ 0.000000ine the chemical potential of oxygen from manual phase diagram construction and use the following formula to solve for the pressure:* $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$ 0.000000ne the chemical potential of oxygen from manual phase diagram construction and use the following formula to solve for the pressure:* $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$

While YMnO\(_3\) has one of the lowest formation energies within the Y-Mn-O system, it's decomposition enthalpy (i.e., energy "below" hull) is not very negative compared to the other phases in the system. This suggests that it has a low relative stability compared to the neighboring phases.

This is largely due to the fact that Y\(_2\)O\(_3\) is a massive thermodynamic sink -- it has both the most negative formation energy and the most negative decomposition enthalpy. This can be confirmed by looking at the green color-shading on the ternary phase diagram.

2.3 Compound phase diagrams for plotting subsets of the convex hull

The previous analysis partially explains why synthesis routes to YMnO\(_3\) from the starting binary oxides (i.e. Y\(_2\)O\(_3\) and Mn\(_2\)O\(_3\)) require such high temperatures to proceed. We can take a slice of the hull with the CompoundPhaseDiagram to visualize this more clearly. First, let's import the module:

from pymatgen.analysis.phase_diagram import CompoundPhaseDiagram

Before we can make the compound phase diagram, we have to specify the terminal compositions as Composition objects within pymatgen:

from pymatgen.core.composition import Composition
terminal_comps = [Composition("Y2O3"), Composition("Mn2O3")]

Now we can initialize the compound phase diagram object and plot it:

cpd = CompoundPhaseDiagram(entries, terminal_comps)
PDPlotter(cpd).get_plot()

An important note: the reaction energy associated with the ComputedReaction object is eV per mole of reaction (i.e. per mole of YMnO\(_3\)):

rxn_energy = rxn.calculated_reaction_energy
print(rxn_energy)
-0.21793684385414736

However, if we calculate the number of atoms in the reaction we can normalize this to a reaction energy per atom basis:

num_atoms = sum([rxn.get_el_amount(elem) for elem in rxn.elements])
rxn_energy_per_atom = rxn_energy / num_atoms

print(round(rxn_energy_per_atom, 3))
-0.044
At the interfaces where the powder crystallites touch, if the free energy of the system can be decreased by forming a new phase or set of phases, the new phase(s) will nucleate and grow.

We can predict the possible reactions between the interface of any two phases by drawing a line (see the red dashed line below) connecting the two phases on the phase diagram. A reaction is given by each point where the connecting line intersects the phase diagram points/lines. 

In the hypothetical system below, there are two predicted reactions given by the yellow star and green circle -- in this case **the reaction to form $\gamma$ (green circle) is the most thermodynamically favorable** because it involves the greatest decrease in free energy. However, the reaction given by the yellow star is still favorable and may occur at higher temperatures / later times.

And now we see that the -0.044 eV/atom reaction energy matches with the result from the CompoundPhaseDiagram interface.

Note that the CompoundPhaseDiagram is also useful for plotting subsections of the convex hull:

comps = [Composition(c) for c in ["Y2O3", "Mn2O3", "Y2Mn2O7"]]

example_cpd = CompoundPhaseDiagram(entries, comps)
PDPlotter(example_cpd).get_plot()
(no ID)
0.143 eV/atom (+0.143 eV/atom)", "MnO2idget-view+json"> (no ID)
0.162 eV/atom (+0.162 eV/atom)", "MnO29", "version_major": 2, "version_minor": 0} (no ID)
0.053 eV/atom (+0.053 eV/atom)", "Mn2
O3> (no ID)
0.153 eV/atom (+0.153 eV/atom)", "Mn2rendered" markdown="1">O3kdown="1"> (no ID)
0.154 eV/atom (+0.154 eV/atom)", "Mn2ext_cell_render border-box-sizing rendered_html" markdown="1">O3er border-box-sizing rendered_html" markdown="1"> (no ID)
0.17 eV/atom (+0.17 eV/atom)", "Mn5 let's look at these in a DataFrame by using a helper method:
O8t these in a DataFrame by using a helper method:
(no ID)
0.189 eV/atom (+0.189 eV/atom)", "Y2>O3 class="cell border-box-sizing code_cell rendered" markdown="1"> (no ID)
0.139 eV/atom (+0.139 eV/atom)", "Y21">O3s="input"> (no ID)
0.157 eV/atom (+0.157 eV/atom)", "Y2der-box-sizing code_cell rendered" markdown="1">O3g code_cell rendered" markdown="1"> (no ID)
0.153 eV/atom (+0.153 eV/atom)", "Y2hzdk:52
O3iv> (no ID)
0.175 eV/atom (+0.175 eV/atom)", "YMnO3t" markdown="1"> (no ID)
-0.051 eV/atom (+0.137 eV/atom)", "YMnO3ass="output_html rendered_html output_subarea output_execute_result"> (no ID)
-0.013 eV/atom (+0.174 eV/atom)", "YMnO3lt"> (no ID)
-0.102 eV/atom (+0.086 eV/atom)"], "marker": {"color": [0.062, 0.056, 0.148, 0.143, 0.162, 0.053, 0.153, 0.154, 0.17, 0.189, 0.139, 0.157, 0.153, 0.175, 0.137, 0.174, 0.086], "colorscale": [[0.0, "#fad393"], [0.5, "#ff813d"], [1.0, "#ff0000"]], "size": 6, "symbol": "diamond"}, "mode": "markers", "name": "Above Hull", "showlegend": true, "type": "scatter", "x": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.5, 0.5, 0.5], "y": [0.06223409118525858, 0.055561615629150296, 0.14833155216471905, 0.1433712401868963, 0.16164928890570884, 0.05348781461188867, 0.15310504044944073, 0.1537806154241248, 0.16996561476060412, 0.18929977492479325, 0.1386944255174356, 0.15666082269634293, 0.15334858999090292, 0.17470772398972656, -0.05050164655535827, -0.013401918050925055, -0.1016229133880439]}, {"error_y": {"array": [0, 0, 0, 0], "color": "gray", "thickness": 2.5, "type": "data", "width": 5}, "hoverinfo": "text", "hoverlabel": {"font": {"size": 14}}, "hovertext": ["Y2 Mn254747O7 (no ID)
-0.187 eV/atom", "YMn2h>O5 (no ID)
-0.19 eV/atom", "MnO204167 Y2O3 (no ID)
0.0 eV/atom", "Y2 O37648 (no ID)
0.0 eV/atom"], "marker": {"color": "darkgreen", "line": {"color": "black", "width": 2}, "size": 11}, "mode": "markers", "name": "Stable", "opacity": 0.9, "showlegend": true, "type": "scatter", "x": [0.5, 0.3333333333333333, 0.0, 1.0], "y": [-0.1873287707060758, -0.18950367667954282, 0.0, 0.0]}], {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "MnO2 ", "x": 0.0, "xanchor": "right", "xref": "x", "xshift": -10, "y": 0.0, "yanchor": "auto", "yref": "y", "yshift": -10}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y2 O368154", "x": 1.0, "xanchor": "right", "xref": "x", "xshift": -10, "y": 0.0, "yanchor": "auto", "yref": "y", "yshift": -10}], "autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "tracegroupgap": 7, "traceorder": "reversed", "x": 0, "xanchor": "left", "y": 1.05}, "margin": {"b": 20, "l": 10, "pad": 20, "r": 10, "t": 20}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}, "xaxis": {"anchor": "y", "gridcolor": "rgba(0,0,0,0.1)", "mirror": "ticks", "nticks": 8, "showgrid": true, "showline": true, "side": "bottom", "tickfont": {"size": 16.0}, "ticks": "inside", "title": {"font": {"color": "#000000", "size": 20.0}, "text": "Fraction"}, "type": "linear", "zeroline": false}, "yaxis": {"anchor": "x", "gridcolor": "rgba(0,0,0,0.1)", "mirror": "ticks", "showgrid": true, "showline": true, "side": "left", "tickfont": {"size": 16.0}, "ticks": "inside", "title": {"font": {"color": "#000000", "size": 20.0}, "text": "Formation energy (eV/atom)"}, "type": "linear"}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('bf7cd591-4d68-41c4-97a5-b3ffce34868e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); down="1">

From the grand potential phase diagram above, we see that only YMn\(_2\)O\(_5\) and Y\(_2\)Mn\(_2\)O\(_7\) are stable at a relative oxygen chemical potential of 0 eV at T = 1000 K. This corresponds to flowing (open) oxygen gas at the standard state of pressure of 0.1 MPa (close to 1 atm).

Note that the phase diagram above corresponds to a binary system, since we have removed a degree of freedom by fixing the oxygen chemical potential to a specific value.

2.5.2 EXERCISE: Determine oxygen stability window of YMnO\(_3\)

Determine the partial pressure of oxygen (at T = 1000 K) where YMnO\(_3\) becomes stable.

Hint: Determine the chemical potential of oxygen from manual phase diagram construction and use the following formula to solve for the pressure:

\[ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} \]
from math import exp
k = 8.617e-5  # eV/K
T = 1000  # K

mu_O = -0.343  # found manually from phase diagram construction
mu_O2 = mu_O * 2  
pressure = 0.1*exp(mu_O2/(k*T))  # MPa
print(f"{round(pressure, 7)} MPa")
3.49e-05 MPa
def get_df_from_rxns(rxns):
    energies = [r.energy_per_atom for r in rxns]
    uncertainties = [r.energy_uncertainty_per_atom.s for r in rxns]
    chemsyses = [r.chemical_system for r in rxns]

    data = {"reaction": rxns, "energy": energies, "dE": uncertainties, "chemsys": chemsyses}

    return pandas.DataFrame(data).sort_values("energy").reset_index(drop=True)

This is quite a low O\(_2\) partial pressure. However, note that this value is extremely sensitive to small differences in calculated formation energies for the compounds.

Temperature is often an even more powerful driver for oxidizing/reducing conditions than pressure. In fact, at higher temperatures (T = 1400 K), YMnO\(_3\) is predicted to be stable even at the standard state (0.1 MPa) pressure.

2.5.3 Finding "critical" chemical potentials within pymatgen

As was hinted at above, all phases on the compositional phase diagram are stable within a certain region of chemical potentials. These do not need to be found manually as in the above exercise; instead, there are methods to solve for them algorithmically. In pymatgen, this can be found in the get_chempot_range_stability_phase() method. For YMnO\(_3\), we get:

pd_gibbs = PhaseDiagram(gibbs_entries)
pd_gibbs.get_chempot_range_stability_phase(Composition("YMnO3"), open_elt=Element("O"))
{Element Y: (-5.684675115489508, -8.059642293382048),
 Element Mn: (-1.1179289454355414, -3.492896123328082),
 Element O: (-1.9261348812004853, -0.3428234292721252)}
      

Note that the upper bound value of chemical potential for oxygen matches what we found in the previous exercise (-0.343 eV).

2.6 Plotting predominance diagrams

The chemical potential ranges over which a phase is stable can be plotted in a new diagram, typically called a predominance diagram.

A predominance diagram can be created in pymatgen by calling get_chempot_range_map_plot() on a ternary phase diagram. Because one chemical potential is always dependent, we only need 2 dimensions to represent the chemical potential stability regions. Note: these form polygons, which are not necessarily rectangular.

Note: the -0.343 eV value where YMnO\(_3\) becomes stable is actually the tip of the narrow YMnO\(_3\) polygon!

plotter = PDPlotter(pd_gibbs)
plot = plotter.get_chempot_range_map_plot(elements=[Element("Y"), Element("O")])

plot.xlim(-9.7, -3) # changing plotting boundaries
plot.ylim(-4,0)

plot.show()

2.7 BONUS: Plotting chemical potential diagrams (adding one more dimension!)

It is often even more convenient to visualize all three dimensions within chemical potential space. For this, we can plot a chemical potential diagram. For now, this code only exists in the (separate) reaction-network package, but will be added soon to pymatgen.

from rxn_network.thermo.chempot_diagram import ChempotDiagram

To create the diagram, we first need to define some limits on the chemical potential ranges to plot:

limits={Element("Y"): (-10, 0),
        Element("Mn"): (-10, 0),
        Element("O"): (-7, 0)}

And then we can plot it similar to plotting a conventional phase diagram in pymatgen. Try interacting with the full 3D figure yourself!

cd = ChempotDiagram(pd_gibbs, limits=limits)
cd.get_plot()
O49, -0.9878571202804518, -0.9872899029429579, -0.9763547740527356, -0.975299343737159, -0.973086299553092, -0.9661339473294872, -0.9602591534601711, -0.9530097120055777, -0.9186826538783708, -0.8799079840841716, -0.8685338241181199, -0.8470913183167446, -0.8114562315941917, -0.794556202019539, -0.791143544475745, -0.7898488360233735, -0.7832133998727531, -0.7789869995919189, -0.7698682492484911, -0.7611243616756613, -0.7513773746193131, -0.7466190036483785, -0.7429360761552186, -0.7245628823632012, -0.7220759849351607, -0.7147206698227443, -0.6530169121041592, -0.6503823787613973, -0.6463707803992383, -0.6432475254076755, -0.6419594515365106, -0.6224799080556843, -0.6195999247518289, -0.6195365293334535, -0.6104798348608008, -0.6086470916561874, -0.5878815952226035, -0.5710605532029671, -0.5583941274934693, -0.5402400539497959, -0.5394150094527206, -0.5302791857259276, -0.5090480209069598, -0.49584646890433565, -0.49442768338169707, -0.49268817494548933, -0.4823836663784401, -0.46929516464233156, -0.46055098819325707, -0.45263914484372436, -0.4505777297220197, -0.44394489027115686, -0.4272516540509311, -0.42163397569355965, -0.4195142964038227, -0.4129072919507069, -0.4101856911500037, -0.3994622680974551, -0.3924738928382046, -0.3911219636767348, -0.3900334992727873, -0.38567284361665594, -0.3829349614659336, -0.3718930524841075, -0.3677206458786336, -0.36281105820285564, -0.35937617092734075, -0.3566350104102197, -0.3561702058291037, -0.355292194718094, -0.35140758567474284, -0.3497355715237145, -0.3474814300401367, -0.34195360301042454, -0.3408318676753002, -0.3344181003243232, -0.3326710328283628, -0.3312891283175206, -0.3219058055991793, -0.31914652786624204, -0.3160990829536079, -0.31476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -8.480058655443017, "xanchor": "center", "y": -2.1440268991221467, "yanchor": "auto", "z": -1.060444361556822}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "YMn2183167446, -0.8114562315941917, -0.794556202019539, -0.791143544475745, -0.7898488360233735, -0.7832133998727531, -0.7789869995919189, -0.7698682492484911, -0.7611243616756613, -0.7513773746193131, -0.7466190036483785, -0.7429360761552186, -0.7245628823632012, -0.7220759849351607, -0.7147206698227443, -0.6530169121041592, -0.6503823787613973, -0.6463707803992383, -0.6432475254076755, -0.6419594515365106, -0.6224799080556843, -0.6195999247518289, -0.6195365293334535, -0.6104798348608008, -0.6086470916561874, -0.5878815952226035, -0.5710605532029671, -0.5583941274934693, -0.5402400539497959, -0.5394150094527206, -0.5302791857259276, -0.5090480209069598, -0.49584646890433565, -0.49442768338169707, -0.49268817494548933, -0.4823836663784401, -0.46929516464233156, -0.46055098819325707, -0.45263914484372436, -0.4505777297220197, -0.44394489027115686, -0.4272516540509311, -0.42163397569355965, -0.4195142964038227, -0.4129072919507069, -0.4101856911500037, -0.3994622680974551, -0.3924738928382046, -0.3911219636767348, -0.3900334992727873, -0.38567284361665594, -0.3829349614659336, -0.3718930524841075, -0.3677206458786336, -0.36281105820285564, -0.35937617092734075, -0.3566350104102197, -0.3561702058291037, -0.355292194718094, -0.35140758567474284, -0.3497355715237145, -0.3474814300401367, -0.34195360301042454, -0.3408318676753002, -0.3344181003243232, -0.3326710328283628, -0.3312891283175206, -0.3219058055991793, -0.31914652786624204, -0.3160990829536079, -0.31476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O5.8114562315941917, -0.794556202019539, -0.791143544475745, -0.7898488360233735, -0.7832133998727531, -0.7789869995919189, -0.7698682492484911, -0.7611243616756613, -0.7513773746193131, -0.7466190036483785, -0.7429360761552186, -0.7245628823632012, -0.7220759849351607, -0.7147206698227443, -0.6530169121041592, -0.6503823787613973, -0.6463707803992383, -0.6432475254076755, -0.6419594515365106, -0.6224799080556843, -0.6195999247518289, -0.6195365293334535, -0.6104798348608008, -0.6086470916561874, -0.5878815952226035, -0.5710605532029671, -0.5583941274934693, -0.5402400539497959, -0.5394150094527206, -0.5302791857259276, -0.5090480209069598, -0.49584646890433565, -0.49442768338169707, -0.49268817494548933, -0.4823836663784401, -0.46929516464233156, -0.46055098819325707, -0.45263914484372436, -0.4505777297220197, -0.44394489027115686, -0.4272516540509311, -0.42163397569355965, -0.4195142964038227, -0.4129072919507069, -0.4101856911500037, -0.3994622680974551, -0.3924738928382046, -0.3911219636767348, -0.3900334992727873, -0.38567284361665594, -0.3829349614659336, -0.3718930524841075, -0.3677206458786336, -0.36281105820285564, -0.35937617092734075, -0.3566350104102197, -0.3561702058291037, -0.355292194718094, -0.35140758567474284, -0.3497355715237145, -0.3474814300401367, -0.34195360301042454, -0.3408318676753002, -0.3344181003243232, -0.3326710328283628, -0.3312891283175206, -0.3219058055991793, -0.31914652786624204, -0.3160990829536079, -0.31476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -8.43693887604627, "xanchor": "center", "y": -3.2896525805608112, "yanchor": "auto", "z": -0.3467830622162665}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "YMn12012, -0.7220759849351607, -0.7147206698227443, -0.6530169121041592, -0.6503823787613973, -0.6463707803992383, -0.6432475254076755, -0.6419594515365106, -0.6224799080556843, -0.6195999247518289, -0.6195365293334535, -0.6104798348608008, -0.6086470916561874, -0.5878815952226035, -0.5710605532029671, -0.5583941274934693, -0.5402400539497959, -0.5394150094527206, -0.5302791857259276, -0.5090480209069598, -0.49584646890433565, -0.49442768338169707, -0.49268817494548933, -0.4823836663784401, -0.46929516464233156, -0.46055098819325707, -0.45263914484372436, -0.4505777297220197, -0.44394489027115686, -0.4272516540509311, -0.42163397569355965, -0.4195142964038227, -0.4129072919507069, -0.4101856911500037, -0.3994622680974551, -0.3924738928382046, -0.3911219636767348, -0.3900334992727873, -0.38567284361665594, -0.3829349614659336, -0.3718930524841075, -0.3677206458786336, -0.36281105820285564, -0.35937617092734075, -0.3566350104102197, -0.3561702058291037, -0.355292194718094, -0.35140758567474284, -0.3497355715237145, -0.3474814300401367, -0.34195360301042454, -0.3408318676753002, -0.3344181003243232, -0.3326710328283628, -0.3312891283175206, -0.3219058055991793, -0.31914652786624204, -0.3160990829536079, -0.31476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 20759849351607, -0.7147206698227443, -0.6530169121041592, -0.6503823787613973, -0.6463707803992383, -0.6432475254076755, -0.6419594515365106, -0.6224799080556843, -0.6195999247518289, -0.6195365293334535, -0.6104798348608008, -0.6086470916561874, -0.5878815952226035, -0.5710605532029671, -0.5583941274934693, -0.5402400539497959, -0.5394150094527206, -0.5302791857259276, -0.5090480209069598, -0.49584646890433565, -0.49442768338169707, -0.49268817494548933, -0.4823836663784401, -0.46929516464233156, -0.46055098819325707, -0.45263914484372436, -0.4505777297220197, -0.44394489027115686, -0.4272516540509311, -0.42163397569355965, -0.4195142964038227, -0.4129072919507069, -0.4101856911500037, -0.3994622680974551, -0.3924738928382046, -0.3911219636767348, -0.3900334992727873, -0.38567284361665594, -0.3829349614659336, -0.3718930524841075, -0.3677206458786336, -0.36281105820285564, -0.35937617092734075, -0.3566350104102197, -0.3561702058291037, -0.355292194718094, -0.35140758567474284, -0.3497355715237145, -0.3474814300401367, -0.34195360301042454, -0.3408318676753002, -0.3344181003243232, -0.3326710328283628, -0.3312891283175206, -0.3219058055991793, -0.31914652786624204, -0.3160990829536079, -0.31476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -0.026186397142013013, "xanchor": "center", "y": -0.001950659118370314, "yanchor": "auto", "z": -6.349230346716073}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "O2 -0.5878815952226035, -0.5710605532029671, -0.5583941274934693, -0.5402400539497959, -0.5394150094527206, -0.5302791857259276, -0.5090480209069598, -0.49584646890433565, -0.49442768338169707, -0.49268817494548933, -0.4823836663784401, -0.46929516464233156, -0.46055098819325707, -0.45263914484372436, -0.4505777297220197, -0.44394489027115686, -0.4272516540509311, -0.42163397569355965, -0.4195142964038227, -0.4129072919507069, -0.4101856911500037, -0.3994622680974551, -0.3924738928382046, -0.3911219636767348, -0.3900334992727873, -0.38567284361665594, -0.3829349614659336, -0.3718930524841075, -0.3677206458786336, -0.36281105820285564, -0.35937617092734075, -0.3566350104102197, -0.3561702058291037, -0.355292194718094, -0.35140758567474284, -0.3497355715237145, -0.3474814300401367, -0.34195360301042454, -0.3408318676753002, -0.3344181003243232, -0.3326710328283628, -0.3312891283175206, -0.3219058055991793, -0.31914652786624204, -0.3160990829536079, -0.31476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -9.236047474605448, "xanchor": "center", "y": -6.219695717965241, "yanchor": "auto", "z": 9.322739694342058e-17}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "Mn", "x": -4.97271125514021, "xanchor": "center", "y": 0.0, "yanchor": "auto", "z": -5.245122563239553}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "YMnO3622680974551, -0.3924738928382046, -0.3911219636767348, -0.3900334992727873, -0.38567284361665594, -0.3829349614659336, -0.3718930524841075, -0.3677206458786336, -0.36281105820285564, -0.35937617092734075, -0.3566350104102197, -0.3561702058291037, -0.355292194718094, -0.35140758567474284, -0.3497355715237145, -0.3474814300401367, -0.34195360301042454, -0.3408318676753002, -0.3344181003243232, -0.3326710328283628, -0.3312891283175206, -0.3219058055991793, -0.31914652786624204, -0.3160990829536079, -0.31476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -7.164435833848591, "xanchor": "center", "y": -2.392480228808132, "yanchor": "auto", "z": -1.008030880623261}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "Mn2291037, -0.355292194718094, -0.35140758567474284, -0.3497355715237145, -0.3474814300401367, -0.34195360301042454, -0.3408318676753002, -0.3344181003243232, -0.3326710328283628, -0.3312891283175206, -0.3219058055991793, -0.31914652786624204, -0.3160990829536079, -0.31476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O35292194718094, -0.35140758567474284, -0.3497355715237145, -0.3474814300401367, -0.34195360301042454, -0.3408318676753002, -0.3344181003243232, -0.3326710328283628, -0.3312891283175206, -0.3219058055991793, -0.31914652786624204, -0.3160990829536079, -0.31476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -9.28496850118031, "xanchor": "center", "y": -2.9917842406103996, "yanchor": "auto", "z": -0.4393307729335611}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "Y29536079, -0.31476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn2476647558094084, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O784, -0.31441953101399994, -0.305105113314432, -0.3011905507168781, -0.3002462171517355, -0.29868381507637887, -0.2937822571384169, -0.290547422107923, -0.28728489396430856, -0.2821746088349742, -0.27157155434933217, -0.27046271907630115, -0.26822207377594637, -0.2666338448161426, -0.2664808529108916, -0.2622746282420591, -0.2568766505344554, -0.25663785788584803, -0.2545634965627494, -0.2539875720013533, -0.25327387127471773, -0.25095288130508275, -0.2502409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -8.361956271454577, "xanchor": "center", "y": -3.7858177632510013, "yanchor": "auto", "z": -0.17275610984485373}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "center", "y": -5.2797294055823185, "yanchor": "auto", "z": -6.357959145763412}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "MnO202409971161631, -0.25006400239451443, -0.249304988059164, -0.24804499448879824, -0.2473955113981906, -0.2473867119233582, -0.2468059190488047, -0.2462235520321353, -0.2444511696706914, -0.2437097162296196, -0.24268662934988566, -0.23682873304115237, -0.2279199613605127, -0.2258912411803464, -0.2251033664469904, -0.22217726615442815, -0.21979896660278578, -0.2194314764997552, -0.21808308588198794, -0.21447766932319307, -0.2112935222913957, -0.20221952495505882, -0.19836536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -9.465277774845795, "xanchor": "center", "y": -3.4925214466434893, "yanchor": "auto", "z": -0.15568199690834714}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "MnO", "x": -7.286637938813556, "xanchor": "center", "y": -0.7618054118797376, "yanchor": "auto", "z": -2.2822584147562894}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "Y2536657715578, -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O3 -0.19511165583297665, -0.19026645430265907, -0.18936186444411104, -0.18877167811288595, -0.18858808907601254, -0.18745790819111266, -0.1870229232598622, -0.18538744733318835, -0.18411339317616904, -0.18208531363292668, -0.17968766648674983, -0.17923115749157403, -0.17890646937136853, -0.16484237519892375, -0.16362160546176183, -0.16235997284623346, -0.15904016844174176, -0.15590748209544514, -0.1520607865271781, -0.14994627459467502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -4.271408180852221, "xanchor": "center", "y": -4.050635932795557, "yanchor": "auto", "z": -2.868312837625343}], "camera": {"eye": {"x": 0, "y": 0, "z": 2.0}, "projection": {"type": "orthographic"}}, "xaxis": {"backgroundcolor": "rgba(0,0,0,0)", "gridcolor": "#dbdbdb", "gridwidth": 5.0, "showline": true, "tickfont": {"size": 16}, "ticklen": 14, "ticks": "inside", "title": {"font": {"size": 30}, "text": "\u03bcY67502, -0.13956442742089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); - \u03bcY089872, -0.13913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); o3913032628124633, -0.13664899103441544, -0.13557559051808216, -0.12871775779833342, -0.12839809955175024, -0.12222127569910984, -0.11814243739577189, -0.11740124763011343, -0.11489994619380091, -0.11421465606452141, -0.11275864429228992, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (eV)"}}, "yaxis": {"backgroundcolor": "rgba(0,0,0,0)", "gridcolor": "#dbdbdb", "gridwidth": 5.0, "showline": true, "tickfont": {"size": 16}, "ticklen": 14, "ticks": "inside", "title": {"font": {"size": 30}, "text": "\u03bcMn, -0.10960243682290657, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); - \u03bcMn, -0.10484253542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); o3542852598, -0.10452146091295247, -0.10273677306152348, -0.10243013596870718, -0.10162990413050302, -0.09072230658505431, -0.0898288808999939, -0.08560058212028276, -0.08486430699171552, -0.08369175384864208, -0.08254103942486565, -0.08143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (eV)"}}, "zaxis": {"backgroundcolor": "rgba(0,0,0,0)", "gridcolor": "#dbdbdb", "gridwidth": 5.0, "showline": true, "tickfont": {"size": 16}, "ticklen": 14, "ticks": "inside", "title": {"font": {"size": 30}, "text": "\u03bcO8143702402009453, -0.08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); - \u03bcO08088254740602864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); o02864, -0.07719922449828774, -0.07696972582370043, -0.0764992252925364, -0.07631926080374947, -0.07434668265847723, -0.07304257991981764, -0.07127017344510415, -0.0681195529840282, -0.06641613561687489, -0.06377157172030697, -0.06332348524488075, -0.06309992497493107, -0.06298773215404314, -0.061951153438653296, -0.06174207575119749, -0.05907636522554855, -0.05903740783877659, -0.05804064783182152, -0.057041993663866496, -0.05492533975707672, -0.05454230595554818, -0.05251268305009884, -0.051035013483145895, -0.0502240900114238, -0.04792912666602947, -0.04773753007989331, -0.04757497351690917, -0.04572491962828099, -0.04408802715571958, -0.04314733306814507, -0.042421835039079515, -0.04157649958180049, -0.041400329762652434, -0.038577081775496576, -0.03846036969726139, -0.036953786686562504, -0.0368683885775076, -0.032891801302319564, -0.03271115548443748, -0.0320767834270784, -0.03116576629746539, -0.028129552506169636, -0.02686967176644332, -0.025887391007695267, -0.02569836252509272, -0.024880809327579634, -0.024536889311243773, -0.02340131779810147, -0.02242764689740131, -0.021795541898906992, -0.01957696594515886, -0.019421057287987122, -0.018765312440188923, -0.018532459408548897, -0.017910210981486756, -0.014107741523399074, -0.013921051721291, -0.013675330867086851, -0.011847985810513637, -0.010527198868417291, -0.009229392701099216, -0.008932129797219244, -0.007452914745133754, -0.00643381612312837, -0.0038149466586508206, -0.0022883342733283608, 0.0022883342733283608, 0.0038149466586508206, 0.00643381612312837, 0.007452914745133754, 0.008932129797219244, 0.009229392701099216, 0.010527198868417291, 0.011847985810513637, 0.013675330867086851, 0.013921051721291, 0.014107741523399074, 0.017910210981486756, 0.018532459408548897, 0.018765312440188923, 0.019421057287987122, 0.01957696594515886, 0.021795541898906992, 0.02242764689740131, 0.02340131779810147, 0.024536889311243773, 0.024880809327579634, 0.02569836252509272, 0.025887391007695267, 0.02686967176644332, 0.028129552506169636, 0.03116576629746539, 0.0320767834270784, 0.03271115548443748, 0.032891801302319564, 0.0368683885775076, 0.036953786686562504, 0.03846036969726139, 0.038577081775496576, 0.041400329762652434, 0.04157649958180049, 0.042421835039079515, 0.04314733306814507, 0.04408802715571958, 0.04572491962828099, 0.04757497351690917, 0.04773753007989331, 0.04792912666602947, 0.0502240900114238, 0.051035013483145895, 0.05251268305009884, 0.05454230595554818, 0.05492533975707672, 0.057041993663866496, 0.05804064783182152, 0.05903740783877659, 0.05907636522554855, 0.06174207575119749, 0.061951153438653296, 0.06298773215404314, 0.06309992497493107, 0.06332348524488075, 0.06377157172030697, 0.06641613561687489, 0.0681195529840282, 0.07127017344510415, 0.07304257991981764, 0.07434668265847723, 0.07631926080374947, 0.0764992252925364, 0.07696972582370043, 0.07719922449828774, 0.08088254740602864, 0.08143702402009453, 0.08254103942486565, 0.08369175384864208, 0.08486430699171552, 0.08560058212028276, 0.0898288808999939, 0.09072230658505431, 0.10162990413050302, 0.10243013596870718, 0.10273677306152348, 0.10452146091295247, 0.10484253542852598, 0.10960243682290657, 0.11275864429228992, 0.11421465606452141, 0.11489994619380091, 0.11740124763011343, 0.11814243739577189, 0.12222127569910984, 0.12839809955175024, 0.12871775779833342, 0.13557559051808216, 0.13664899103441544, 0.13913032628124633, 0.13956442742089872, 0.14994627459467502, 0.1520607865271781, 0.15590748209544514, 0.15904016844174176, 0.16235997284623346, 0.16362160546176183, 0.16484237519892375, 0.17890646937136853, 0.17923115749157403, 0.17968766648674983, 0.18208531363292668, 0.18411339317616904, 0.18538744733318835, 0.1870229232598622, 0.18745790819111266, 0.18858808907601254, 0.18877167811288595, 0.18936186444411104, 0.19026645430265907, 0.19511165583297665, 0.19836536657715578, 0.20221952495505882, 0.2112935222913957, 0.21447766932319307, 0.21808308588198794, 0.2194314764997552, 0.21979896660278578, 0.22217726615442815, 0.2251033664469904, 0.2258912411803464, 0.2279199613605127, 0.23682873304115237, 0.24268662934988566, 0.2437097162296196, 0.2444511696706914, 0.2462235520321353, 0.2468059190488047, 0.2473867119233582, 0.2473955113981906, 0.24804499448879824, 0.249304988059164, 0.25006400239451443, 0.2502409971161631, 0.25095288130508275, 0.25327387127471773, 0.2539875720013533, 0.2545634965627494, 0.25663785788584803, 0.2568766505344554, 0.2622746282420591, 0.2664808529108916, 0.2666338448161426, 0.26822207377594637, 0.27046271907630115, 0.27157155434933217, 0.2821746088349742, 0.28728489396430856, 0.290547422107923, 0.2937822571384169, 0.29868381507637887, 0.3002462171517355, 0.3011905507168781, 0.305105113314432, 0.31441953101399994, 0.31476647558094084, 0.3160990829536079, 0.31914652786624204, 0.3219058055991793, 0.3312891283175206, 0.3326710328283628, 0.3344181003243232, 0.3408318676753002, 0.34195360301042454, 0.3474814300401367, 0.3497355715237145, 0.35140758567474284, 0.355292194718094, 0.3561702058291037, 0.3566350104102197, 0.35937617092734075, 0.36281105820285564, 0.3677206458786336, 0.3718930524841075, 0.3829349614659336, 0.38567284361665594, 0.3900334992727873, 0.3911219636767348, 0.3924738928382046, 0.3994622680974551, 0.4101856911500037, 0.4129072919507069, 0.4195142964038227, 0.42163397569355965, 0.4272516540509311, 0.44394489027115686, 0.4505777297220197, 0.45263914484372436, 0.46055098819325707, 0.46929516464233156, 0.4823836663784401, 0.49268817494548933, 0.49442768338169707, 0.49584646890433565, 0.5090480209069598, 0.5302791857259276, 0.5394150094527206, 0.5402400539497959, 0.5583941274934693, 0.5710605532029671, 0.5878815952226035, 0.6086470916561874, 0.6104798348608008, 0.6195365293334535, 0.6195999247518289, 0.6224799080556843, 0.6419594515365106, 0.6432475254076755, 0.6463707803992383, 0.6503823787613973, 0.6530169121041592, 0.7147206698227443, 0.7220759849351607, 0.7245628823632012, 0.7429360761552186, 0.7466190036483785, 0.7513773746193131, 0.7611243616756613, 0.7698682492484911, 0.7789869995919189, 0.7832133998727531, 0.7898488360233735, 0.791143544475745, 0.794556202019539, 0.8114562315941917, 0.8470913183167446, 0.8685338241181199, 0.8799079840841716, 0.9186826538783708, 0.9530097120055777, 0.9602591534601711, 0.9661339473294872, 0.973086299553092, 0.975299343737159, 0.9763547740527356, 0.9872899029429579, 0.9878571202804518, 1.0019454243340489, 1.0492664761534736, 1.0614576001728766, 1.145328807177453, 1.2323521886205333, 1.2410069726212938, 1.2500328261520417, 1.2679618134867277, 1.2800930763708, 1.3119163204175681, 1.3367030086269225, 1.3455103627286393, 1.351615747820911, 1.351662730282546, 1.3553937891765326, 1.3750409012538696, 1.390225255975148, 1.402678182817956, 1.406599153508426, 1.4070365822402597, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760336, 1.416767946952261, 1.430898795869106, 1.4545450574386851, 1.4569480168410234, 1.4591668645227942, 1.4603121600042968, 1.46954213652298, 1.4760043892767296, 1.4779463752367874, 1.5084228002475117, 1.522031913318013, 1.5385122707768146, 1.5400389055534849, 1.5563052594896811, 1.6018609246278284, 1.6054379439634126, 1.610266090180204, 1.6148047455413443, 1.6212307322486847, 1.6260240501812049, 1.6795464802035043, 1.7001150585041536, 1.7043006107763081, 1.7280190192015876, 1.7602964175215698, 3.429550974916094], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('142e6a07-c003-49e3-86af-e5071e7eca4e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (eV)"}}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}, "width": 800}, {"responsive": true} ).then(function(){ var gd = document.getElementById('991cf265-ff61-4ab9-aa6f-6b57f3d659c9'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); d" markdown="1">

4.2 Brute force (simple) approach

Enumerating reactions by brute force may seem like a less advanced approach, but it offers the added benefit that we can identify reactions involving:

1) metastable products 2) products which are not stable with respect to each other

This approach has been implemented with the BasicEnumerator class in the reaction-network package. Let's import the class:

From the chemical potential diagram, we can easily see the relative stabilities of each phase and get a visual picture of where the critical chemical potentials are for each phase.

3. Predicting interface reactions between solids

3.1 A simple model of solid-state synthesis

In solid-state synthesis, precursor compounds are typically milled into powders of small solid crystallites. These powders are intimately mixed, typically pressed into a pellet, and then heated in a furnace. Historically, solid-state synthesis involves high temperatures (i.e. 1200 ºC) and long heating times (24-72 hrs). However, many reactions can proceed significantly faster (on the order of a few minutes) and at temperatures as low as 400-500ºC.

A simple cartoon of solid-state synthesis can be seen below:

At the interfaces where the powder crystallites touch, if the free energy of the system can be decreased by forming a new phase or set of phases, the new phase(s) will nucleate and grow.

We can predict the possible reactions between the interface of any two phases by drawing a line (see the red dashed line below) connecting the two phases on the phase diagram. A reaction is given by each point where the connecting line intersects the phase diagram points/lines.

In the hypothetical system below, there are two predicted reactions given by the yellow star and green circle -- in this case the reaction to form \(\gamma\) (green circle) is the most thermodynamically favorable because it involves the greatest decrease in free energy. However, the reaction given by the yellow star is still favorable and may occur at higher temperatures / later times.

3.2 Using pymatgen's interface reaction calculator

The phase diagram slice approach depicted above has been implemented into pymatgen within the InterfacialReactivity class and is available as an app on the MP website.

Let's see if we can apply it within the Y-Mn-O chemical system to better understand the synthesis of our YMnO\(_3\) target. We will start with plotting the suggested reactions between Y\(_2\)O\(_3\) and Mn\(_2\)O\(_3\):

from pymatgen.analysis.interface_reactions import InterfacialReactivity

ir = InterfacialReactivity(Composition("Y2O3"), Composition("Mn2O3"), pd_gibbs)
ir.plot().show()

In the plot, we see a new convex hull slice, where each point represents a reaction as a function of the (normalized) ratio of mixing between the two reactants. To see which reactions the plot above corresponds to, we need to extract data about the "kinks" within the diagram. Let's use the code below to help us plot information about the reactions shown in the plot above:

pandas.set_option("max_colwidth", 80)  # make columns wider to see full reaction

def get_df_from_interface_rxns(ir):
    critical_rxns = [
        {"Atomic fraction":round(ratio, 3),
         "Reaction": rxn,
            "E$_{rxn}$ (kJ/mol)": round(rxn_energy, 1),
            "E$_{rxn}$ (eV/atom)":round(reactivity, 3)
        }
        for _, ratio, reactivity, rxn, rxn_energy in ir.get_kinks()
    ]

    ir_df = pandas.DataFrame(critical_rxns)
    return ir_df

Now we can construct and display the dataframe:

ir_df = get_df_from_interface_rxns(ir)
ir_df
Atomic fraction Reaction E$_{rxn}$ (kJ/mol)t; Y2O3 + 1.5 Mn E$_{rxn}$ (eV/atom)
0 0.000 Y + 1.5 MnO2 -> Y2O3 + 0.125 YMn12 Mn2O3 -> Mn2O3 0.054636 0.000Y
1 0.1674 O2 + 0.09091 YMn12 -> MnO + 0.09091 YMnO3 0.8333 Mn2O3 + 0.1667 Y2O3 -> 0.3333 YMn2O5 + 0.3333 Mn3O4
-19.2747 -0.040
2 0.5000.1481 YMn12 -> 1.778 MnO + 0.07407 Y2O3 0.5 Mn2O3 + 0.5 Y2O3 -> YMnO38 -34.4648 -0.071
3.. 1.000td> Y2O3 -> Y2O3 0.0 0.000td>

In the table, we see the reactions as a function of the normalized mixing ratio, along with their energy in kJ per mole of reaction, as well as eV per (reactant) atom.

It seems that YMnO\(_3\) is indeed the major predicted reaction product when Y\(_2\)O\(_3\) and and Mn\(_2\)O\(_3\) are combined in equal molar amounts. However, the reaction forming YMn\(_2\)O\(_5\) and Mn\(_3\)O\(_4\) could still occur to some degree depending on the process by which the synthesis procedure occurs (i.e., initial grain sizes, heating rate, maximum temperature reached, etc.) This is because there is still a thermodynamic driving force for subsequent interfacial reaction between YMnO\(_3\) and any remaining precursor Mn\(_2\)O\(_3\). This can be seen by plotting the same interface reaction plot between YMnO\(_3\) and Mn\(_2\)O\(_3\):

ir = InterfacialReactivity(Composition("YMnO3"), Composition("Mn2O3"), pd_gibbs)
ir.plot().show()
get_df_from_interface_rxns(ir)
="output_wrapper" markdown="1"> Atomic fractionown="1"> Reactiont_area" markdown="1"> E$_{rxn}$ (kJ/mol)kdown="1"> E$_{rxn}$ (eV/atom)ered_html output_subarea "> class="output_html rendered_html output_subarea "> iv>
0 MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.000play = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn2O3 -> Mn2O3play === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.0onsole.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.000tly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
1sten for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.333the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.6667 Mn2O3 + 0.3333 YMnO3 -> 0.3333 YMn2O5 + 0.3333 Mn3O4er = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -7.7ntainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -0.016ainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
2for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 1.000he clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); YMnO3 -> YMnO3.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.0 {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.000utputEl, {childList: true}); }} }) }; }); }) }; }); }) }; });

It turns out that this is true again for any Mn\(_3\)O\(_4\) produced, which may react with remaining Y\(_2\)O\(_3\) precursor to make YMnO\(_3\) and MnO. The same goes again for MnO and Mn\(_2\)O\(_3\).

Just in this simple ternary system, we can already see the complex (and sometimes unpredictable) behavior associated with reaction pathways within solid-state synthesiss. To organize this progression of reactions, we choose to create a graph network representation of the possible reaction pathway, such as the one illustrated below:

Before we can explore this reaction network structure further, however, we need to first discuss how to acquire all possible reactions which may occur within a chemical system.

4. Enumerating all reactions within a chemical system

As we saw above, the possibility of subsequent reactions makes a model for solid-state synthesis quite complex. If we wish to capture this behavior, we first need to be able to enumerate through all possible reactions within a chemical system. These reactions will then be used to construct the reaction network.

There are two methods for predicting reactions in a high-throughput manner:

1) interface reactions predicted by iterating through all possible slices of the full phase diagram (as above) 2) brute force trial & error balancing between any set of reactants and any set of products

Both of these methods are implemented in the reaction-network package, which builds reaction network analysis on top of pymatgen. Please see the Github repository below if you are interested in exploring more:

https://github.com/GENESIS-EFRC/reaction-network

4.1 Minimize Gibbs (interface reaction) approach

First, we need to come up with a candidate set of entries. Since we are using the reaction-network package, we are going to initialize the entries using that package's convenience methods:

from rxn_network.entries.entry_set import GibbsEntrySet

gibbs_entry_set = GibbsEntrySet.from_entries(entries, temperature=1000)
stable_entries = gibbs_entry_set.filter_by_stability(e_above_hull=0)

Now, we can initialize the enumerator object:

from rxn_network.enumerators.minimize import MinimizeGibbsEnumerator

mge = MinimizeGibbsEnumerator()

To enumerate reactions, we call enumerate() with a list of provided entries. This will return a list of reactions which are computed using the interface reaction method from above:

rxns = mge.enumerate(stable_entries)

As before, let's look at these in a DataFrame by using a helper method:

def get_df_from_rxns(rxns):
    energies = [r.energy_per_atom for r in rxns]
    uncertainties = [r.energy_uncertainty_per_atom.s for r in rxns]
    chemsyses = [r.chemical_system for r in rxns]

    data = {"reaction": rxns, "energy": energies, "dE": uncertainties, "chemsys": chemsyses}

    return pandas.DataFrame(data).sort_values("energy").reset_index(drop=True)
df = get_df_from_rxns(rxns)
df
reaction> energy> dE9231 Y2O3 + 0.07692 YMn12 -> Y + 0.9231 YMnO3 chemsys7
08 2 Y + 1.5 O2 -> Y2O3O3 -3.429551/td> 0.061644 O-YO-Y
1> MnO2 + 1.333 Y -> Mn + 0.6667 Y2O3> -1.760296v> 0.055203div> Mn-O-Y v>
2v> 12 MnO2 + 17 Y -> YMn12 + 8 Y2O3zing text_cell rendered" markdown="1"> -1.728019"cell border-box-sizing text_cell rendered" markdown="1"> 0.054636"cell border-box-sizing text_cell rendered" markdown="1"> Mn-O-Y border-box-sizing text_cell rendered" markdown="1"> class="inner_cell" markdown="1">
3possible to specify precursors: YMn12 + 7 O2 -> YMnO3 + 11 MnOr-box-sizing code_cell rendered" markdown="1"> -1.704301class="cell border-box-sizing code_cell rendered" markdown="1"> 0.054747"cell border-box-sizing code_cell rendered" markdown="1"> Mn-O-Y border-box-sizing code_cell rendered" markdown="1"> class="input">
4 0.08333 YMn12 + 0.5625 O2 -> MnO + 0.04167 Y2O3 rendered" markdown="1"> -1.700115 class="cell border-box-sizing code_cell rendered" markdown="1"> 0.057648="cell border-box-sizing code_cell rendered" markdown="1"> Mn-O-Ys="cell border-box-sizing code_cell rendered" markdown="1"> class="cell border-box-sizing code_cell rendered" markdown="1">
... ... ... class="output_wrapper" markdown="1"> ...class="output_wrapper" markdown="1"> ...output_wrapper" markdown="1"> class="output_wrapper" markdown="1">
56"output_area" markdown="1"> MnO + 0.5 Y2Mn2O7 -> YMnO3 + 0.5 Mn2O3="d30f1428-1e8e-48c0-a336-156bebcbbb13"> -0.058041428-1e8e-48c0-a336-156bebcbbb13"> 0.053955428-1e8e-48c0-a336-156bebcbbb13"> Mn-O-Y1428-1e8e-48c0-a336-156bebcbbb13"> iv id="d30f1428-1e8e-48c0-a336-156bebcbbb13">
57f1428-1e8e-48c0-a336-156bebcbbb13"> 0.5 Mn2O3 + 0.25 O2 -> MnO2_view "> -0.051035javascript"> 0.065617d30f1428-1e8e-48c0-a336-156bebcbbb13'); Mn-Oipt type="application/vnd.jupyter.widget-view+json"> ipt type="application/vnd.jupyter.widget-view+json">
58div> 0.5 O2 + 2 YMnO3 -> Y2Mn2O7 markdown="1"> -0.031166="output_area" markdown="1"> 0.067726="output_area" markdown="1"> Mn-O-Yput_area" markdown="1"> class="output_area" markdown="1">
59output_html rendered_html output_subarea output_execute_result"> 12 Mn + Y -> YMn12rame tbody tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } -0.003815.dataframe tbody tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } 0.068154dy tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } Mn-Yal-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; }
60me tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } 2 MnO2 + 2 YMnO3 -> Mn2O3 + Y2Mn2O7me thead th { text-align: right; } -0.002288me thead th { text-align: right; } 0.052478ead th { text-align: right; } Mn-O-Yhead th { text-align: right; } text-align: right; }

61 rows × 4 columns

We can plot a histogram of the reaction energies to get an idea of the thermodynamics of the system. Again, we see that Y\(_2\)O\(_3\) is quite stable (the reaction on the far left!). Most reactions, however, are in the -0.4 to 0.0 eV/atom range.

import plotly.express as px

px.histogram(data_frame=df, x="energy", nbins=20, template="seaborn")

Building a dataframe with the reactions:

df = get_df_from_rxns(rxns_basic)
df
body>
="text_cell_render border-box-sizing rendered_html" markdown="1"> reactionmerating open reactions Since solid-state synthesis often happens in the presence of some kind of gaseous or "open" environment, it is also possible to enumerate so-called open reactions where a particular entry is open. For this, we can use `BasicOpenEnumerator`, or `MinimizeGrandPotentialEnumerator`: energyte synthesis often happens in the presence of some kind of gaseous or "open" environment, it is also possible to enumerate so-called open reactions where a particular entry is open. For this, we can use `BasicOpenEnumerator`, or `MinimizeGrandPotentialEnumerator`: dEstate synthesis often happens in the presence of some kind of gaseous or "open" environment, it is also possible to enumerate so-called open reactions where a particular entry is open. For this, we can use `BasicOpenEnumerator`, or `MinimizeGrandPotentialEnumerator`: chemsysiv> v> div>
07 Y + 0.75 O2 -> 0.5 Y2O3ass="cell border-box-sizing code_cell rendered" markdown="1"> -3.429551v class="cell border-box-sizing code_cell rendered" markdown="1"> 0.061644v class="cell border-box-sizing code_cell rendered" markdown="1"> O-Yclass="cell border-box-sizing code_cell rendered" markdown="1"> v>
1"input"> 2 Y + 1.5 MnO2 -> Y2O3 + 1.5 Mnapper" markdown="1"> -1.760296> 0.055203s="output_wrapper" markdown="1"> Mn-O-Yss="output_wrapper" markdown="1"> v class="output_wrapper" markdown="1">
2"output" markdown="1"> 2.125 Y + 1.5 MnO2 -> Y2O3 + 0.125 YMn12"e03ccea8-5d1a-4142-8ab4-de47bf81f12b"> -1.728019area" markdown="1"> 0.054636cea8-5d1a-4142-8ab4-de47bf81f12b"> Mn-O-Yccea8-5d1a-4142-8ab4-de47bf81f12b"> div id="e03ccea8-5d1a-4142-8ab4-de47bf81f12b">
303ccea8-5d1a-4142-8ab4-de47bf81f12b"> 0.6364 O2 + 0.09091 YMn12 -> MnO + 0.09091 YMnO3ass="output_subarea output_widget_view "> -1.704301subarea output_widget_view "> 0.054747/javascript"> Mn-O-Y'#e03ccea8-5d1a-4142-8ab4-de47bf81f12b'); ript>
4: "0d6ca4d6e0cb4a9893ba02c4892b3e1c", "version_major": 2, "version_minor": 0} O2 + 0.1481 YMn12 -> 1.778 MnO + 0.07407 Y2O3="cell border-box-sizing code_cell rendered" markdown="1"> -1.700115iv> 0.057648div> Mn-O-Y/div> iv>
...> ...class="cell border-box-sizing code_cell rendered" markdown="1"> ...lass="cell border-box-sizing code_cell rendered" markdown="1"> ...ell border-box-sizing code_cell rendered" markdown="1"> ...nput"> xhzdk:69
573 class="output_wrapper" markdown="1"> 1.778 MnO + 0.07407 Y2O3 -> O2 + 0.1481 YMn12ss="output" markdown="1"> 1.700115t_wrapper" markdown="1"> 0.057648_wrapper" markdown="1"> Mn-O-Yut" markdown="1"> v class="output_area" markdown="1">
574output_html rendered_html output_subarea output_execute_result"> MnO + 0.09091 YMnO3 -> 0.6364 O2 + 0.09091 YMn12xecute_result"> 1.704301d> 0.054747 .dataframe tbody tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } Mn-O-Ybody tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; }
575me tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } Y2O3 + 0.125 YMn12 -> 2.125 Y + 1.5 MnO2top; } .dataframe thead th { text-align: right; } 1.728019lign: top; } .dataframe thead th { text-align: right; } 0.054636ame thead th { text-align: right; } Mn-O-Ythead th { text-align: right; } .dataframe thead th { text-align: right; }
576> Y2O3 + 1.5 Mn -> 2 Y + 1.5 MnO2> 1.760296class="dataframe"> 0.055203style="text-align: right;"> Mn-O-Yext-align: right;">
577rgy 0.5 Y2O3 -> Y + 0.75 O2/th> 3.429551/th> 0.061644d> O-Y

578 rows × 4 columns

And plotting the reaction energy distribution:

px.histogram(data_frame=df, x="energy", template="seaborn")

And we see that all enumerated reactions do indeed contain YMnO\(_3\) as a product:

get_df_from_rxns(rxns_ymno3)
reaction energy75 O2 -> 0.5 Y2O3 dE.573877 chemsys0
0 + 0.02703 MnO + 0.7568 O2 -> 0.4865 Y2O3 + 0.02703 YMnO3 0.6364 O2 + 0.09091 YMn12 -> MnO + 0.09091 YMnO3-Y -1.704301/td> 0.054747> Mn-O-Yr>
1 + 0.03846 Mn2O3 + 0.7692 O2 -> 0.03846 Y2Mn2O7 + 0.4615 Y2O3 2.409 O2 + 0.2727 YMn12 -> Mn3O4 + 0.2727 YMnO3n-Y -1.626024/td> 0.055648> Mn-O-Yr>
2 + O2 + 0.01961 YMn12 -> 0.1176 Y2Mn2O7 + 0.3922 Y2O3 1.773 O2 + 0.1818 YMn12 -> Mn2O3 + 0.1818 YMnO3n-Y -1.621231/td> 0.056117> Mn-O-Yr>
3 + O2 + 0.25 Mn -> 0.125 Y2Mn2O7 + 0.375 Y2O3 4.682 O2 + 0.4545 YMn12 -> Mn5O8 + 0.4545 YMnO3n-Y -1.556305/td> 0.056397> Mn-O-Yr>
4.. O2 + 0.08 YMn12 -> 0.88 MnO2 + 0.08 YMnO3d> -1.430899 0.057475
Mn-O-Yr>
...25 Y2Mn2O7 + 0.375 Y2O3 -> Y + O2 + 0.25 Mn ...94811 ...29422 ...Y ...
741176 Y2Mn2O7 + 0.3922 Y2O3 -> Y + O2 + 0.01961 YMn12 1.444 MnO + 0.5185 Y2O3 -> YMnO3 + 0.03704 YMn12Y 0.128718 0.057905> Mn-O-Yr>
7503846 Y2Mn2O7 + 0.4615 Y2O3 -> Y + 0.03846 Mn2O3 + 0.7692 O2 Y2O3 + 13 Mn -> YMnO3 + YMn12 0.250953 0.054716> Mn-O-Yr>
764865 Y2O3 + 0.02703 YMnO3 -> Y + 0.02703 MnO + 0.7568 O2 3 MnO + 2 Y2O3 -> Y + 3 YMnO3 0.355292 0.059457> Mn-O-Yr>
775 Y2O3 -> Y + 0.75 O2 0.9231 Y2O3 + 0.07692 YMn12 -> Y + 0.9231 YMnO3/td> 0.751377 0.059467
Mn-O-Yody> tbody>
78 × 4 columns

Y2O3 + Mn -> Y + YMnO3> 0.761124div> 0.060093div> Mn-O-Y/div> iv>

79 rows × 4 columns

It is also possible to specify precursors:

be_precursors = BasicEnumerator(precursors=["Y2O3","Mn2O3"])
rxns_precursors = be_precursors.enumerate(entries_030)
get_df_from_rxns(rxns_ymno3)
energy reaction energys dE
chemsysdy> body>
08.573877 0.6364 O2 + 0.09091 YMn12 -> MnO + 0.09091 YMnO3 -1.704301
0.054747 Mn-O-Yth>
16.376210 2.409 O2 + 0.2727 YMn12 -> Mn3O4 + 0.2727 YMnO3r> -1.626024
0.055648 Mn-O-Yth>
26.374144 1.773 O2 + 0.1818 YMn12 -> Mn2O3 + 0.1818 YMnO3r> -1.621231
0.056117 Mn-O-Yth>
34.854178 4.682 O2 + 0.4545 YMn12 -> Mn5O8 + 0.4545 YMnO3r> -1.556305
0.056397 Mn-O-Yth>
44.679241 O2 + 0.08 YMn12 -> 0.88 MnO2 + 0.08 YMnO3
-1.430899
0.057475 Mn-O-Yth>
...568917 ...61284 ...Y ...
...
74.550820 1.444 MnO + 0.5185 Y2O3 -> YMnO3 + 0.03704 YMn12> 0.128718> 0.057905 Mn-O-Yth>
75.474267 Y2O3 + 13 Mn -> YMnO3 + YMn12> 0.250953> 0.054716 Mn-O-Yth>
76.195813 3 MnO + 2 Y2O3 -> Y + 3 YMnO3> 0.355292> 0.059457 Mn-O-Yth>
77.803885 0.9231 Y2O3 + 0.07692 YMn12 -> Y + 0.9231 YMnO3 0.751377
0.059467 Mn-O-Yth>
78.444450 Y2O3 + Mn -> Y + YMnO3n-Y 0.761124> 0.060093 Mn-O-Yth>

79 rows × 4 columns

And it is even possible to specify both precursors and a target. In this case, we should only get one possible reaction:

be = BasicEnumerator(precursors=["Y2O3","Mn2O3"], target="YMnO3")
rxns_ymno3 = be.enumerate(entries_030)
get_df_from_rxns(rxns_ymno3)
iv> reactionv class="cell border-box-sizing text_cell rendered" markdown="1"> energyss="cell border-box-sizing text_cell rendered" markdown="1"> dEclass="cell border-box-sizing text_cell rendered" markdown="1"> chemsysborder-box-sizing text_cell rendered" markdown="1"> class="inner_cell" markdown="1"> iv class="text_cell_render border-box-sizing rendered_html" markdown="1">
0 have a way to enumerate all reactions within a chemical system, we'd like to be able to put them in a convenient data structure such that we can learn something about a system. One particular data structure that is helpful for predicting reaction pathways is a **weighted directed graph**. The weighted directed graph, or reaction network, connects all phases within the chemical system via the possible reactions between them. This corresponds to a structure like the following: - **Nodes**: Phase combinations - **Edges**: Reactions - **Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* Mn2O3 + Y2O3 -> 2 YMnO3ction network, connects all phases within the chemical system via the possible reactions between them. This corresponds to a structure like the following: - **Nodes**: Phase combinations - **Edges**: Reactions - **Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* -0.07127ted graph, or reaction network, connects all phases within the chemical system via the possible reactions between them. This corresponds to a structure like the following: - **Nodes**: Phase combinations - **Edges**: Reactions - **Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* 0.061237 combinations - **Edges**: Reactions - **Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* Mn-O-Yctions - **Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* he function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x*

4.4 BONUS: Enumerating open reactions

Since solid-state synthesis often happens in the presence of some kind of gaseous or "open" environment, it is also possible to enumerate so-called open reactions where a particular entry is open. For this, we can use BasicOpenEnumerator, or MinimizeGrandPotentialEnumerator:

from rxn_network.enumerators.basic import BasicOpenEnumerator
boe = BasicOpenEnumerator(["O2"])
open_rxns = boe.enumerate(entries_030)
get_df_from_rxns(open_rxns)
pe="application/vnd.jupyter.widget-view+json"> reaction978e23144c1a9d1a678944d4c5a7", "version_major": 2, "version_minor": 0} energy dEv> chemsys/div> v> /div>
0v class="cell border-box-sizing code_cell rendered" markdown="1"> Y + 0.75 O2 -> 0.5 Y2O3izing code_cell rendered" markdown="1"> -3.429551rder-box-sizing code_cell rendered" markdown="1"> 0.061644> O-Y hzdk:80
1v class="output_wrapper" markdown="1"> Y + 0.02703 MnO + 0.7568 O2 -> 0.4865 Y2O3 + 0.02703 YMnO3="1"> -3.349437wrapper" markdown="1"> 0.059158" markdown="1"> Mn-O-Yput_area" markdown="1"> class="output_area" markdown="1">
2> Y + 0.03846 Mn2O3 + 0.7692 O2 -> 0.03846 Y2Mn2O7 + 0.4615 Y2O3l vertex properties, 3 internal edge properties, at 0x7f2b87c80a30> -3.154596v> 0.054649v> Mn-O-Y/div> v>
3v> Y + 0.04569 Mn3O4 + 0.7614 O2 -> 0.4315 Y2O3 + 0.1371 YMnO3rkdown="1"> -3.045732"cell border-box-sizing text_cell rendered" markdown="1"> 0.051417"cell border-box-sizing text_cell rendered" markdown="1"> Mn-O-Y border-box-sizing text_cell rendered" markdown="1"> class="inner_cell" markdown="1">
4pathfinding, we first need to set the precursors and target defining the particular synthesis procedure we are interested in. For now, let's look at the synthesis of YMnO$_3$ from the starting binary oxides, Y$_2$O$_3$ and Mn$_2$O$_3$. We first acquire the entries from the set of entries by providing the formula: Y + O2 + 0.02564 YMn12 -> 0.359 Y2O3 + 0.3077 YMnO3l rendered" markdown="1"> -3.007624class="cell border-box-sizing code_cell rendered" markdown="1"> 0.049065"cell border-box-sizing code_cell rendered" markdown="1"> Mn-O-Y border-box-sizing code_cell rendered" markdown="1"> class="input">
... ...v> ...> ...class="cell border-box-sizing text_cell rendered" markdown="1"> ...lass="cell border-box-sizing text_cell rendered" markdown="1"> class="cell border-box-sizing text_cell rendered" markdown="1">
1523xt_cell_render border-box-sizing rendered_html" markdown="1"> 0.359 Y2O3 + 0.3077 YMnO3 -> Y + O2 + 0.02564 YMn12/div> 3.007624v> 0.049065 class="cell border-box-sizing code_cell rendered" markdown="1"> Mn-O-Ys="cell border-box-sizing code_cell rendered" markdown="1"> class="cell border-box-sizing code_cell rendered" markdown="1">
1524 0.4315 Y2O3 + 0.1371 YMnO3 -> Y + 0.04569 Mn3O4 + 0.7614 O2l rendered" markdown="1"> 3.045732iv class="cell border-box-sizing text_cell rendered" markdown="1"> 0.051417v class="cell border-box-sizing text_cell rendered" markdown="1"> Mn-O-Yss="cell border-box-sizing text_cell rendered" markdown="1"> v>
1525ner_cell" markdown="1"> 0.03846 Y2Mn2O7 + 0.4615 Y2O3 -> Y + 0.03846 Mn2O3 + 0.7692 O2 We can also draw a cartoon illustration of what this reaction network looks like using the `plot_network()` function 3.154596 cartoon illustration of what this reaction network looks like using the `plot_network()` function 0.054649v> Mn-O-Yiv class="cell border-box-sizing code_cell rendered" markdown="1"> v>
1526put"> 0.4865 Y2O3 + 0.02703 YMnO3 -> Y + 0.02703 MnO + 0.7568 O2lass="output" markdown="1"> 3.349437v> 0.059158s="output_wrapper" markdown="1"> Mn-O-Yss="output_wrapper" markdown="1"> v class="output_wrapper" markdown="1">
1527tput" markdown="1"> 0.5 Y2O3 -> Y + 0.75 O21"> 3.429551_area" markdown="1"> 0.061644ut_png output_subarea "> O-Youtput_png output_subarea "> class="output_png output_subarea "> mg src="data:image/png;base64,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MybfdRENZwxXRERD3Pw5U7aryO97PqnrOXZBo6qT36qIhi+GKyKiAlDuT35TjNMEAFBUR9/dNyvPJRENWwxXREQFYM4cCULFK0YkBAC1etfKX386Pt91EQ1HDFdERAXi67NqjoRq3wUAVWvCiPfI+vXq5rsuouGG4YqIqIAEx/7wlkCPAIBaHdXu7p6d55KIhh2GKyKiAlJbWxuG4r7ae3sQam7n7UGi3GK4IiIqMF+fVXPEirwD9NweDDz34QENdyaiAeF/bEREBcg/8vt3xKDv7cGVG9hclChXGK6IiApQbW1t6AhW9TUXdTBn9W93luW7LqLhgOGKiKhAzb9z2n5RfAQAVm3U9515+a6JaDhguCIiKmDSHl1rRLoAwFqd+fI7n12+fPny2A1jJk988cUXK/NdH1Eh4vR0IqIC99LbO79k1DycaDs4Jdl2+HI/2eGmwzAWcZwUgCYAbwD4aV1dXXueSyUqCAxXREQFbvny5TG48ZeCVPcN3Y4jJ8WJhMbxBBpGA7+zNEg0O6pNAH5QV1f3x3zXSzTU8bYgEVGBSyaT/zmZbJ901IuVHIsUj9lbVl25eeTU0q0jJlY0x0onHC6uvLrbidSo6tMNDQ2T8l0v0VDHsQhERAWsoaHhTgDzmqIl49u8otJXJ38ZO8vH9v08HqTw8L5NrgLTxiRCP2LDvwPwVN4KJioAvHJFRFTY/qLbiZQmnMiIVZNu/FywAoAuN4p/n3IrWmKlTls0Pg7ArS+++OLk/JRKVBgYroiIClR9fb0BcGPCjVS0RkvwacXZp+D4xsGmkdOQNF65VRhr7U25rZSosDBcEREVqLFjx5YCiATiRFqipec9tzlWChUxoTGutXZUbiokKkwMV0REhasbgBrYsDhInffEeJgGFDDQEEBnTqojKlAMV0REBaqurs4HsCsW+ifHdZ9AZercmenq1v3wbNjtqIaO42zLXZVEhYfhioiogFlrV5f4yVbXhqkFez9AcZj+s3NuObYD0zqOoizdfURVD5eXl3+Uh1KJCgZbMRARFTDf9xsjkcgjoxIdMQWm//W2td6HVVPQVFSOojCNK08cRE3ncZT6iSMlYeoERH5UW1sb5rtuoqGMHdqJiApcQ0PDJFV9LjTOhLZIfGzCjYywIi4AjYRBV1k6cTQeptqstUsXL178r/mul2ioY7giIhoGXnzxxcogCP5GRO4HYEKIY6BWAFXVfdbaf/7e9773Tr7rJCoEDFdERMPIj3/84xHGmJuMMaNVtUtVdzzxxBPbAGi+ayMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIaqP8Ppj0tUAyP3yYAAAAASUVORK5CYII= " width=299 height=600 >

1528 rows × 4 columns

If these reactions involve an open entry that is also an element, then it is possible to recalculate the reaction energy in terms of grand potential. For this it helps to import ReactionSet for recalculating reaction energies all at once:

from rxn_network.reactions.reaction_set import ReactionSet
rxn_set = ReactionSet.from_rxns(open_rxns)
open_rxns_grand = rxn_set.get_rxns(open_elem=Element("O"), chempot=0.0)
get_df_from_rxns(open_rxns_grand)
0.3333 YMn12 -> 3.667 Mn + 2.333 YMnO3 (dG = -0.249 eV/atom) Total Cost: 0.467 1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) Y2Mn2O7 + 0.07143 YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) Total Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 reaction 1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) Y2Mn2O7 + 0.07143 YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) Total Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 energy308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) Y2Mn2O7 + 0.07143 YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) Total Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 dE 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) Y2Mn2O7 + 0.07143 YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) Total Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 chemsys YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) Total Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 l Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 .5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473
0 0.473 Y + 0.75 O2 -> 0.5 Y2O3> -8.573877v> 0.154110v> Yv> v>
1v> Y + 0.02703 MnO + 0.7568 O2 -> 0.4865 Y2O3 + 0.02703 YMnO3arkdown="1"> -8.373593"cell border-box-sizing text_cell rendered" markdown="1"> 0.147896"cell border-box-sizing text_cell rendered" markdown="1"> Mn-Yll border-box-sizing text_cell rendered" markdown="1"> class="inner_cell" markdown="1">
2: Finding and balancing reaction pathways from a real experiment ### NOTE: this last section can take a few minutes to run! In 2019, Todd et al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation: $$ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: Y + 0.03846 Mn2O3 + 0.7692 O2 -> 0.03846 Y2Mn2O7 + 0.4615 Y2O3et al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation: $$ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: -7.999155 section can take a few minutes to run! In 2019, Todd et al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation: $$ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: 0.138574al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation: $$ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: Mn-Yet al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation: $$ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline:
3observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: Y + O2 + 0.01961 YMn12 -> 0.1176 Y2Mn2O7 + 0.3922 Y2O3ed via in situ X-ray diffraction on a synchrotron beamline: -7.748977> 0.129626 class="cell border-box-sizing text_cell rendered" markdown="1"> Mn-Yass="cell border-box-sizing text_cell rendered" markdown="1"> class="cell border-box-sizing text_cell rendered" markdown="1">
4"text_cell_render border-box-sizing rendered_html" markdown="1"> Y + O2 + 0.25 Mn -> 0.125 Y2Mn2O7 + 0.375 Y2O3odd, P. K., Smith, A. M., & Neilson, J. R. (2019). Yttrium manganese oxide phase stability and selectivity using lithium carbonate assisted metathesis reactions. Inorganic Chemistry, 58(22), 15166–15174. https://doi.org/10.1021/acs.inorgchem.9b02075* -7.694811dd, P. K., Smith, A. M., & Neilson, J. R. (2019). Yttrium manganese oxide phase stability and selectivity using lithium carbonate assisted metathesis reactions. Inorganic Chemistry, 58(22), 15166–15174. https://doi.org/10.1021/acs.inorgchem.9b02075* 0.129422dd, P. K., Smith, A. M., & Neilson, J. R. (2019). Yttrium manganese oxide phase stability and selectivity using lithium carbonate assisted metathesis reactions. Inorganic Chemistry, 58(22), 15166–15174. https://doi.org/10.1021/acs.inorgchem.9b02075* Mn-Y v>
...ell border-box-sizing text_cell rendered" markdown="1"> ...nner_cell" markdown="1"> ...ext_cell_render border-box-sizing rendered_html" markdown="1"> ... synthesis, we first acquire the entries for the entire 6-element chemical system from MP: ... v>
1523ll border-box-sizing code_cell rendered" markdown="1"> 0.125 Y2Mn2O7 + 0.375 Y2O3 -> Y + O2 + 0.25 Mns="cell border-box-sizing text_cell rendered" markdown="1"> 7.694811iv> 0.129422v> Mn-Y> v>
1524ass="cell border-box-sizing text_cell rendered" markdown="1"> 0.1176 Y2Mn2O7 + 0.3922 Y2O3 -> Y + O2 + 0.01961 YMn12> 7.748977cell" markdown="1"> 0.129626ell_render border-box-sizing rendered_html" markdown="1"> Mn-Ythis entries by a stability filter of 20 meV/atom at T = 650 ºC: v>
1525ass="cell border-box-sizing code_cell rendered" markdown="1"> 0.03846 Y2Mn2O7 + 0.4615 Y2O3 -> Y + 0.03846 Mn2O3 + 0.7692 O2lass="input"> 7.999155> 0.138574iv> Mn-Y iv>
1526lass="cell border-box-sizing text_cell rendered" markdown="1"> 0.4865 Y2O3 + 0.02703 YMnO3 -> Y + 0.02703 MnO + 0.7568 O2"1"> 8.373593order-box-sizing text_cell rendered" markdown="1"> 0.147896cell" markdown="1"> Mn-Yxt_cell_render border-box-sizing rendered_html" markdown="1"> hen designate the enumerator, cost function, and build the network. **NOTE: This may take a minute to build**!
1527
0.5 Y2O3 -> Y + 0.75 O2izing code_cell rendered" markdown="1"> 8.573877order-box-sizing code_cell rendered" markdown="1"> 0.154110> Y7 hzdk:87 /div>

1528 rows × 4 columns

Similarly, it is also possible to enumerate reactions straight from the grand potential phase diagram:

from rxn_network.enumerators.minimize import MinimizeGrandPotentialEnumerator

mgpe = MinimizeGrandPotentialEnumerator(open_elem=Element("O"), mu=0.0)
open_rxns2 = mgpe.enumerate(entries_030)
get_df_from_rxns(open_rxns2)
----------------------------- YCl3 + 4.5 Mn2O3 -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) Y2Mn2O7 + Mn2O3 -> 2 MnO2 + 2 YMnO3 (dG = 0.005 eV/atom) Total Cost: 0.516 YCl3 + 4.5 Mn2O3 -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 reaction-> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) Y2Mn2O7 + Mn2O3 -> 2 MnO2 + 2 YMnO3 (dG = 0.005 eV/atom) Total Cost: 0.516 YCl3 + 4.5 Mn2O3 -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 energy -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) Y2Mn2O7 + Mn2O3 -> 2 MnO2 + 2 YMnO3 (dG = 0.005 eV/atom) Total Cost: 0.516 YCl3 + 4.5 Mn2O3 -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 dE2O3 -> 2 MnO2 + 2 YMnO3 (dG = 0.005 eV/atom) Total Cost: 0.516 YCl3 + 4.5 Mn2O3 -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 chemsys YCl3 + 4.5 Mn2O3 -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 3 + 4.5 Mn2O3 -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 l3 + 4.5 Mn2O3 -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
0n2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 Y + 1.5 O2 -> Y2O3CO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -8.573877YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.154110 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Y 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
13 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 Mn + 2 Y + 3.5 O2 -> Y2Mn2O7gt; LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -6.376210O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.166771O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
2 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.1667 YMn12 + 1.833 Y + 3.5 O2 -> Y2Mn2O70.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -6.3741447 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.166797-> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 MnO + 2 Y + 2.5 O2 -> Y2Mn2O7tom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.854178 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.161051+ Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-YO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 33 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
4 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.6667 Mn3O4 + 2 Y + 2.167 O2 -> Y2Mn2O7 = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.6792413 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.160835YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-YMn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 l Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
5; CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.4 Mn5O8 + 2 Y + 1.9 O2 -> Y2Mn2O7YO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.568917> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.161284 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 S to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
6---------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn2O3 + 2 Y + 2 O2 -> Y2Mn2O7.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.5508203 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.161051Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 i2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
7 -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 MnO2 + 2 Y + 1.5 O2 -> Y2Mn2O7; LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.474267O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.162980O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 l Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
8; CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 YMn12 + 25.5 O2 -> Y2Mn2O7 + 22 MnO2 = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.195813 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.169340+ Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-YO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
9t; CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn + O2 -> MnO2= 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -3.8038857 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.187083 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 O3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
10+ 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.1667 YMn12 + 0.9167 Y2O3 + 2.125 O2 -> Y2Mn2O7= 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -2.444450t; Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.160450t; Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y25 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 33 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
112O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 Mn + Y2O3 + 2 O2 -> Y2Mn2O7 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -2.089271> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.161051YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y721 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
125 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 MnO + 0.5 O2 -> MnO2 + 0.1667 Y2O3 (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.759822 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.187083------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 ------------------------------------ 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
13+ 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 MnO + Y2O3 + O2 -> Y2Mn2O7 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.5672402 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.1610514CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 l Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
14 CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.3333 Mn3O4 + 0.3333 O2 -> MnO2nO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.409947t; Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.192931t; Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 l Cost: 0.516 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
15O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.6667 Mn3O4 + Y2O3 + 0.6667 O2 -> Y2Mn2O7CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.392302 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.162767gt; Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 nO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
16O3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.4 Mn5O8 + Y2O3 + 0.4 O2 -> Y2Mn2O73 LiMn(CO3)2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.281979MnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.164735 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 O3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
170.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn2O3 + Y2O3 + 0.5 O2 -> Y2Mn2O7.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.263881; LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.163936gt; 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y52 Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
185 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.2 Mn5O8 + 0.2 O2 -> MnO2> -0.189300iv> 0.199499iv> Mn> v>
19v> 0.5 Mn2O3 + 0.25 O2 -> MnO2order-box-sizing text_cell rendered" markdown="1"> -0.153105 class="cell border-box-sizing text_cell rendered" markdown="1"> 0.196850="cell border-box-sizing text_cell rendered" markdown="1"> Mnclass="cell border-box-sizing text_cell rendered" markdown="1"> class="cell border-box-sizing text_cell rendered" markdown="1">
20text_cell_render border-box-sizing rendered_html" markdown="1"> 2 YMnO3 + 0.5 O2 -> Y2Mn2O7 filter out unfeasbile pathways. To do this, we import and use the `PathwaySolver` class: -0.085706> 0.186246 class="cell border-box-sizing code_cell rendered" markdown="1"> Mn-Yass="cell border-box-sizing code_cell rendered" markdown="1"> class="cell border-box-sizing code_cell rendered" markdown="1"> iv class="input">

5. Constructing a reaction network from enumerated reactions

Now that we have a way to enumerate all reactions within a chemical system, we'd like to be able to put them in a convenient data structure such that we can learn something about a system. One particular data structure that is helpful for predicting reaction pathways is a weighted directed graph.

The weighted directed graph, or reaction network, connects all phases within the chemical system via the possible reactions between them. This corresponds to a structure like the following: - Nodes: Phase combinations - Edges: Reactions - Edge weights/costs: Reaction free energies (after monotonic transformation)

The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function.

For more information about this approach, please see the following publication:

Reference: McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x

Let's start by reacquiring entries for the Y-Mn-O system and filtering for stable entries at T = 900 K:

with MPRester() as mpr:
    mp_entries = mpr.get_entries_in_chemsys("Y-Mn-O")
gibbs_entries = GibbsEntrySet.from_entries(mp_entries, temperature=900).filter_by_stability(0)

Now we specify the enumerator(s) and cost function to use in the network construction. At the moment, only the softplus function is implemented.

from rxn_network.costs.softplus import Softplus

be = BasicEnumerator()
cf = Softplus(temp=1000)

We then initialize our reaction network object:

from rxn_network.network.network import ReactionNetwork

rn = ReactionNetwork(gibbs_entries, [be], cf)

The network can be built by calling build(). This runs through each enumerator provided, and constructs the reaction network structure within the graph-tool package. The graph object is stored under the graph attribute.

rn.build()
print(rn.graph)
<Graph object, directed, with 86 vertices and 267 edges, 2 internal vertex properties, 3 internal edge properties, at 0x7f2b87c80a30>

To perform pathfinding, we first need to set the precursors and target defining the particular synthesis procedure we are interested in. For now, let's look at the synthesis of YMnO\(_3\) from the starting binary oxides, Y\(_2\)O\(_3\) and Mn\(_2\)O\(_3\). We first acquire the entries from the set of entries by providing the formula:

y2o3_entry = gibbs_entries.get_min_entry_by_formula("Y2O3")
mn2o3_entry = gibbs_entries.get_min_entry_by_formula("Mn2O3")
ymno3_entry = gibbs_entries.get_min_entry_by_formula("YMnO3")

And then we set the precursors and target nodes:

rn.set_precursors([y2o3_entry, mn2o3_entry])
rn.set_target(ymno3_entry)

We can also draw a cartoon illustration of what this reaction network looks like using the plot_network() function

from rxn_network.network.visualize import plot_network

plot_network(rn.graph);

We can perform simple pathfinding between the precursors node and target node. This finds the k-shortest paths between our precursors and target, which yields a sequence of reaction steps. Note: these are not necessarily mass balanced!

paths = rn.find_pathways(["YMnO3"], k=10)
PATHS to YMnO3 

--------------------------------------- 

Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) 
Total Cost: 0.227 

1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) 
Mn2O3 + 0.07143 YMn12 -> 2.786 MnO + 0.07143 YMnO3 (dG = -0.349 eV/atom) 
Total Cost: 0.45 

1.333 Y2O3 + Mn2O3 -> Y2Mn2O7 + 0.6667 Y (dG = 0.401 eV/atom) 
Mn2O3 + Y -> Mn + YMnO3 (dG = -0.877 eV/atom) 
Total Cost: 0.45 

1.333 Y2O3 + Mn2O3 -> Y2Mn2O7 + 0.6667 Y (dG = 0.401 eV/atom) 
12 Mn2O3 + 13 Y -> YMn12 + 12 YMnO3 (dG = -0.866 eV/atom) 
Total Cost: 0.451 

1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) 
0.07692 Mn2O3 + 0.07692 YMn12 -> Mn + 0.07692 YMnO3 (dG = -0.287 eV/atom) 
Total Cost: 0.46 

0.01282 Y2O3 + 0.6538 Mn2O3 -> MnO2 + 0.02564 YMn12 (dG = 0.365 eV/atom) 
MnO2 + 0.07143 YMn12 -> 1.786 MnO + 0.07143 YMnO3 (dG = -0.649 eV/atom) 
Total Cost: 0.465 

1.5 Y2O3 + 2 Mn2O3 -> Mn + 1.5 Y2Mn2O7 (dG = 0.121 eV/atom) 
Mn + Y2Mn2O7 -> MnO + 2 YMnO3 (dG = -0.225 eV/atom) 
Total Cost: 0.466 

1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) 
Y2Mn2O7 + 0.3333 YMn12 -> 3.667 Mn + 2.333 YMnO3 (dG = -0.249 eV/atom) 
Total Cost: 0.467 

1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) 
Y2Mn2O7 + 0.07143 YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) 
Total Cost: 0.467 

0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 
2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) 
Total Cost: 0.473 


6. BONUS: Finding and balancing reaction pathways from a real experiment

NOTE: this last section can take a few minutes to run!

In 2019, Todd et al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation:

\[ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 \]

They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline:

Reference: Todd, P. K., Smith, A. M., & Neilson, J. R. (2019). Yttrium manganese oxide phase stability and selectivity using lithium carbonate assisted metathesis reactions. Inorganic Chemistry, 58(22), 15166–15174. https://doi.org/10.1021/acs.inorgchem.9b02075

To model this synthesis, we first acquire the entries for the entire 6-element chemical system from MP:

with MPRester() as mpr:
    entries = mpr.get_entries_in_chemsys("Y-Mn-O-Li-Cl-C")

And we filter this entries by a stability filter of 20 meV/atom at T = 650 ºC:

temp = 650 + 273
gibbs_entries = GibbsEntrySet.from_entries(entries, temperature=temp).filter_by_stability(0.020)

We then designate the enumerator, cost function, and build the network. NOTE: This may take a minute to build!

be = BasicEnumerator()
cf = Softplus(temp=temp)
rn = ReactionNetwork(gibbs_entries, [be], cf)
rn.build()

As before, we then set the precursors:

rn.set_precursors([gibbs_entries.get_min_entry_by_formula("Li2CO3"), 
                   gibbs_entries.get_min_entry_by_formula("Mn2O3"), 
                   gibbs_entries.get_min_entry_by_formula("YCl3")])

And then we perform pathfinding to all three targets simultaneously:

paths = rn.find_pathways(["YMnO3","LiCl","CO2"], k=10)
PATHS to YMnO3 

--------------------------------------- 

YCl3 + 4.5 Mn2O3 -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) 
Y2Mn2O7 + Mn2O3 -> 2 MnO2 + 2 YMnO3 (dG = 0.005 eV/atom) 
Total Cost: 0.516 

YCl3 + 4.5 Mn2O3 -> Mn8Cl3O10 + 0.5 Y2Mn2O7 (dG = -0.015 eV/atom) 
2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) 
Total Cost: 0.523 

Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) 
YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) 
Total Cost: 0.625 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) 
Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) 
Total Cost: 0.722 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) 
Total Cost: 0.728 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) 
Total Cost: 0.734 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) 
Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) 
Total Cost: 0.734 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) 
Total Cost: 0.74 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) 
YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) 
Total Cost: 0.742 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) 
Total Cost: 0.746 

PATHS to LiCl 

--------------------------------------- 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) 
Total Cost: 0.478 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) 
Total Cost: 0.483 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
Total Cost: 0.487 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) 
Total Cost: 0.491 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) 
Total Cost: 0.495 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
Total Cost: 0.499 

Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) 
LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 
0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) 
Total Cost: 0.717 

Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) 
Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 
0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) 
Total Cost: 0.72 

Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) 
LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 
YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) 
Total Cost: 0.721 

Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) 
Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 
0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) 
Total Cost: 0.721 

PATHS to CO2 

--------------------------------------- 

0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) 
Total Cost: 0.26 

2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) 
Total Cost: 0.271 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
Total Cost: 0.293 

Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) 
Li2MnO3 + 0.2 MnCO3 -> 0.4 Li5Mn3O8 + 0.2 CO2 (dG = -0.017 eV/atom) 
Total Cost: 0.516 

Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) 
Li2MnO3 + 0.4286 MnCO3 -> 0.2857 Li7Mn5O12 + 0.4286 CO2 (dG = -0.014 eV/atom) 
Total Cost: 0.517 

Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) 
Li2MnO3 + 0.3333 MnCO3 -> 0.6667 Li3Mn2O5 + 0.3333 CO2 (dG = -0.012 eV/atom) 
Total Cost: 0.518 

0.6667 Li2CO3 + 0.6667 Mn2O3 -> LiMnO2 + 0.3333 LiMn(CO3)2 (dG = 0.006 eV/atom) 
LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) 
Total Cost: 0.519 

Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) 
Li2MnO3 + MnCO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) 
Total Cost: 0.519 

Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) 
LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) 
Total Cost: 0.52 

Li2CO3 + Mn2O3 -> Li2MnO3 + MnCO3 (dG = 0.009 eV/atom) 
Li2MnO3 + 0.5 MnCO3 -> 0.5 Li4Mn3O7 + 0.5 CO2 (dG = -0.002 eV/atom) 
Total Cost: 0.52 


Finally, we must enforce mass balance to filter out unfeasbile pathways. To do this, we import and use the PathwaySolver class:

from rxn_network.pathways.solver import PathwaySolver
from rxn_network.reactions.computed import ComputedReaction

ps = PathwaySolver(rn.entries, paths, Softplus(1000))

The PathwaySolver takes a net reaction by which to enforce mass balance, i.e. total consumption of all produced intermediates. This corresponds to the previous reaction formula we showed. We can create a ComputedReaction object by finding the relevant entries and providing them to the reaction constructor:

product_entries = []

for i in ["YMnO3", "LiCl", "CO2"]:
    product_entries.append(gibbs_entries.get_min_entry_by_formula(i))
net_rxn = ComputedReaction.balance(rn.precursors,product_entries)
print(net_rxn)
1.5 Li2CO3 + YCl3 + 0.5 Mn2O3 -> YMnO3 + 3 LiCl + 1.5 CO2

Finally, we solve for the balanced paths and print them. This may take a minute!

balanced_paths = ps.solve(net_rxn)

The final balanced pathways can be printed, as below:

for p in balanced_paths:
    print(p, "\n")
0.3333 YCl3 + 0.5 Li2O -> LiCl + 0.1667 Y2O3 (dG = -0.3 eV/atom) 
0.5 Mn2O3 + 0.5 Y2O3 -> YMnO3 (dG = -0.069 eV/atom) 
Li2CO3 -> Li2O + CO2 (dG = 0.139 eV/atom) 
Average Cost: 0.231 

0.5 Mn2O3 + 0.5 Y2O3 -> YMnO3 (dG = -0.069 eV/atom) 
Li2CO3 -> Li2O + CO2 (dG = 0.139 eV/atom) 
0.5 YCl3 + 0.5 Li2O -> LiCl + 0.5 YClO (dG = -0.275 eV/atom) 
0.5 Li2O + YClO -> LiCl + 0.5 Y2O3 (dG = -0.138 eV/atom) 
Average Cost: 0.244 

Li2CO3 -> Li2O + CO2 (dG = 0.139 eV/atom) 
0.5 YCl3 + 0.5 Li2O -> LiCl + 0.5 YClO (dG = -0.275 eV/atom) 
0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) 
LiMnO2 + YClO -> YMnO3 + LiCl (dG = -0.083 eV/atom) 
Average Cost: 0.245 


The balanced pathways are ordered by likelihood, as determined by an averaged cost.

The pathways above successfully capture many of the experimentally observed intermediates and reaction steps, such as the reaction of YOCl and LiMnO\(_2\).

For more information or questions regarding this lesson, please contact mcdermott [at] lbl.gov Thank you!